1
1
Fork 0
nixos-configs/flake.nix

17 lines
427 B
Nix
Raw Normal View History

2022-11-26 18:39:04 +00:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs?rev=20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8";
};
outputs = { self, nixpkgs }: {
nixosConfigurations.catacomb = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [ ./machine/catacomb ];
2022-11-26 18:39:04 +00:00
};
nixosConfigurations.empyrean = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./machine/empyrean ];
};
2022-11-26 18:39:04 +00:00
};
}