-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
executable file
·41 lines (34 loc) · 1010 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
plasma-manager = {
url = "github:nix-community/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
nur.url = "github:nix-community/nur";
};
outputs = { self, nixpkgs, home-manager, nur, plasma-manager, ...}@inputs: {
nixosConfigurations.computhor = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = inputs;
modules = [
home-manager.nixosModules.home-manager
./hosts/computhor
];
};
nixosConfigurations.gpn-computhor = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = inputs;
modules = [
home-manager.nixosModules.home-manager
./hosts/gpn
];
};
};
}