1
Fork 0
nixos-system-config/flake.nix

43 lines
985 B
Nix
Raw Normal View History

2023-06-18 22:52:24 +02:00
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nur.url = "github:nix-community/NUR";
impermanence.url = "github:nix-community/impermanence";
2024-04-05 14:36:20 +02:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
2024-04-05 14:36:20 +02:00
};
2024-07-21 23:04:27 +02:00
hyprland = {
2024-07-26 19:46:46 +02:00
type = "git";
url = "https://github.com/hyprwm/Hyprland";
submodules = true;
2024-07-21 23:04:27 +02:00
};
};
2023-06-18 22:52:24 +02:00
2024-08-01 18:37:19 +02:00
outputs = { nixpkgs, impermanence, home-manager, nur, ... } @ inputs:
let
lib = nixpkgs.lib.extend (final: prev:
import ./lib { lib = final; }
);
in
{
nixosConfigurations = lib.mkHosts {
modules = [
home-manager.nixosModules.home-manager {
home-manager.sharedModules = [
nur.hmModules.nur
];
}
impermanence.nixosModules.impermanence
nur.nixosModules.nur
];
nixpkgs = nixpkgs;
inputs = inputs;
};
2023-06-18 22:52:24 +02:00
};
}