feat: make multi-file work, though not pretty

This commit is contained in:
2025-06-19 10:16:16 +00:00
committed by Emma Thorpe
parent bed08ad165
commit 3a9407fc9d
+8 -3
View File
@@ -41,12 +41,17 @@
nixosConfigurations.emmathorpe-edaas = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
let profile = "work";
modules = [
./system/machine/EDaaS/configuration.nix
./emmathorpe/user.nix
./emmathorpe/swaywm.nix
./emmathorpe/home-manager-module.nix
./emmathorpe/swaywm.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.emmathorpe.imports = [ ./emmathorpe/home.nix ./system/modules/work/default.nix ];
}
];
};
};