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";
|
2022-11-27 01:32:19 +00:00
|
|
|
modules = [ ./machine/catacomb ];
|
2022-11-26 18:39:04 +00:00
|
|
|
};
|
2022-11-27 01:46:26 +00:00
|
|
|
nixosConfiguration.empyrean = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [ ./machine/empyrean ];
|
|
|
|
};
|
2022-11-26 18:39:04 +00:00
|
|
|
};
|
|
|
|
}
|