1
1
Fork 0
nixos-configs/flake.nix

24 lines
762 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";
nixpkgs-empyrean.url = "github:NixOS/nixpkgs?rev=2ebb6c1e5ae402ba35cca5eec58385e5f1adea04";
2022-11-28 16:43:16 +00:00
nixos-wsl.url = github:nix-community/NixOS-WSL;
2022-11-26 18:39:04 +00:00
};
2022-11-28 16:43:16 +00:00
outputs = { self, nixpkgs, nixpkgs-empyrean, nixos-wsl }@attrs: {
2022-11-26 18:39:04 +00:00
nixosConfigurations.catacomb = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [ ./machine/catacomb ];
2022-11-26 18:39:04 +00:00
};
nixosConfigurations.empyrean = nixpkgs-empyrean.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./machine/empyrean ];
};
2022-11-28 16:43:16 +00:00
nixosConfigurations.stagirite = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = attrs;
modules = [ ./machine/stagirite ];
};
2022-11-26 18:39:04 +00:00
};
}