1
1
Fork 0
nixos-configs/flake.nix

37 lines
1.0 KiB
Nix
Raw Normal View History

2022-11-26 18:39:04 +00:00
{
inputs = {
2023-02-13 17:41:31 +00:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixos-wsl.url = "github:nix-community/NixOS-WSL";
2022-12-20 01:13:38 +00:00
nixos-wsl.inputs.nixpkgs.follows = "nixpkgs";
2023-02-13 17:41:31 +00:00
perimeter81.url = "git+file:///home/tvb/projects/perimeter81-nixos";
perimeter81.inputs.nixpkgs.follows = "nixpkgs";
2022-11-26 18:39:04 +00:00
};
2023-02-13 17:41:31 +00:00
outputs = { self, nixpkgs, nixos-wsl, perimeter81 }: {
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
];
};
2023-01-28 21:50:52 +00:00
workeric = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
2023-02-13 17:41:31 +00:00
modules = [
./machine/workeric
perimeter81.nixosModules.default
];
2023-01-28 21:50:52 +00:00
};
2022-11-28 16:43:16 +00:00
};
2022-11-26 18:39:04 +00:00
};
}