Add quasar host

This commit is contained in:
2024-09-25 19:44:47 -07:00
parent 572cca2dd9
commit e30a5830ef
2 changed files with 22 additions and 0 deletions

View File

@@ -28,6 +28,11 @@
modules = [ ./hosts/monolith ]; modules = [ ./hosts/monolith ];
specialArgs = { inherit self inputs secrets; }; specialArgs = { inherit self inputs secrets; };
}; };
quasar = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./hosts/quasar ];
specialArgs = { inherit self inputs secrets; };
};
}; };
}; };
} }

17
hosts/quasar/default.nix Normal file
View File

@@ -0,0 +1,17 @@
{ self, modulesPath, ... }:
{
imports = [
"${modulesPath}/virtualisation/amazon-image.nix"
self.nixosModules.common
self.nixosModules.prompt
self.nixosModules.server
];
networking.hostName = "quasar";
promptEmoji = "🌟";
time.timeZone = "America/Los_Angeles";
system.stateVersion = "24.05";
}