-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
27 lines (24 loc) · 840 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
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
inputs.impermanence.url = "github:nix-community/impermanence";
outputs = { self, nixpkgs, ... }@attrs : {
# carmine: Parallels vm (desktop)
nixosConfigurations.carmine = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [ ./hosts/carmine/configuration.nix ];
specialArgs = attrs;
};
# garnet: tiger lake laptop (server)
nixosConfigurations.garnet = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./hosts/garnet/configuration.nix ];
specialArgs = attrs;
};
# zircon: dell xps 13 (desktop)
nixosConfigurations.zircon = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./hosts/zircon/configuration.nix ];
specialArgs = attrs;
};
};
}