feat: add initial suport for EDaaS setup at work

This commit is contained in:
2025-06-16 14:44:08 +00:00
committed by Emma Thorpe
parent dd33501382
commit 1cc633bb67
3 changed files with 48 additions and 1 deletions
+15
View File
@@ -38,5 +38,20 @@
}
];
};
nixosConfigurations.emmathorpe-edaas = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./system/machine/EDaaS/configuration.nix
./emmathorpe/user.nix
./emmathorpe/swaywm.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.emmathorpe = import ./emmathorpe/home.nix;
}
];
};
};
}