This commit is contained in:
Noa Aarts 2025-03-29 21:47:29 +01:00
parent 5a7b9b23a3
commit 230e50436d
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -149,15 +149,12 @@
nixosModules = {
automapaper = ./modules/automapaper;
};
homeConfigurations = {
homeManagerModules = {
"noa@zelden" =
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in
inputs.home-manager.lib.homeManagerConfiguration {
pkgs = pkgs;
extraSpecialArgs = { inherit inputs nix-colors; };
modules = [
(import ./common/home {
enableGraphical = true;
enableFlut = false;
@ -180,9 +177,7 @@
];
});
};
})
];
};
});
};
packages = import ./packages { inherit nixpkgs; };
};