1
1
Fork 0
nixos-configs/flake.nix

28 lines
712 B
Nix
Raw Normal View History

2022-11-26 18:39:04 +00:00
{
inputs = {
2022-12-01 06:20:33 +00:00
nixpkgs.url = "github:NixOS/nixpkgs?ref=refs/tags/22.11";
nixos-wsl.url = "github:nix-community/NixOS-WSL";
2022-12-20 01:13:38 +00:00
nixos-wsl.inputs.nixpkgs.follows = "nixpkgs";
2022-11-26 18:39:04 +00:00
};
outputs = { self, nixpkgs, nixos-wsl }: {
2022-12-29 03:00:25 +00:00
nixosConfigurations = {
catacomb = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [ ./machine/catacomb ];
};
empyrean = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./machine/empyrean ];
};
stagirite = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
nixos-wsl.nixosModules.wsl
./machine/stagirite
];
};
2022-11-28 16:43:16 +00:00
};
2022-11-26 18:39:04 +00:00
};
}