generated from john/nix-docker
more
This commit is contained in:
15
flake.nix
15
flake.nix
@@ -38,6 +38,7 @@
|
||||
};
|
||||
|
||||
pkgs = inputs.nixpkgs.legacyPackages.${systemSettings.system};
|
||||
pkgs-stable = inputs.nixpkgs-stable.legacyPackages.${systemSettings.system};
|
||||
|
||||
in
|
||||
{
|
||||
@@ -64,10 +65,18 @@
|
||||
|
||||
homeConfigurations = {
|
||||
useGlobalPkgs = true;
|
||||
user = home-manager.lib.homeManagerConfiguration {
|
||||
"${userSettings.username}" = home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
extraSpecialArgs = {inherit inputs outputs pkgs;};
|
||||
modules = [ ./homeManagerModules/home.nix ];
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
inherit outputs;
|
||||
inherit userSettings;
|
||||
inherit systemSettings;
|
||||
};
|
||||
modules = [
|
||||
./homeManagerModules/home.nix
|
||||
({...}: {home.stateVersion = "${stateVersion}";})
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user