getting there

This commit is contained in:
Till 2023-05-15 02:43:36 +02:00
parent 02545a51e9
commit 52f9b876b5
2 changed files with 71 additions and 1 deletions

View file

@ -10,6 +10,19 @@
outputs = { self, nixpkgs, home-manager, ... }@inputs: {
nixosConfigurations = {
nova = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
{
services.xserver.enable = true;
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
networking.hostName = "nova";
}
./system
./system/hardware-nova.nix
];
};
romulus = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
@ -27,7 +40,7 @@
};
homeConfigurations = {
"till@romulus" = home-manager.lib.homeManagerConfiguration {
till = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs; };
modules = [