forked from baracoder/nix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
30 lines (28 loc) · 897 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
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.ny.url = "git+ssh://[email protected]:10022/nyris/ny?ref=main";
inputs.nixos-hardware.url = github:NixOS/nixos-hardware/master;
outputs = { self, nixpkgs, ny, nixos-hardware}: {
nixosConfigurations = {
hex = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
ny.nixosModules.ny
./common.nix
./hex.nix
nixpkgs.nixosModules.notDetected
nixos-hardware.nixosModules.dell-xps-13-9380
];
};
hal = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
ny.nixosModules.ny
./common.nix
./hal.nix
nixpkgs.nixosModules.notDetected
];
};
};
};
}