Extra special args

This commit is contained in:
Filippo Berto 2024-10-22 21:45:45 +02:00
parent f91ca25c01
commit 0598f3a893
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED

View file

@ -77,15 +77,27 @@
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
stable = inputs.nixpkgs;
unstable = inputs.nixpkgs-u;
};
};
}
];
homeManagerUModules = [
inputs.home-manager-u.nixosModules.default
{ home-manager = { useGlobalPkgs = true; useUserPackages = true; }; }
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
stable = inputs.nixpkgs;
unstable = inputs.nixpkgs-u;
};
};
}
];
commonModules = [
# Nix configuration
basic_module