home-manager extraSpecialArgs added

This commit is contained in:
foglar 2025-01-01 11:21:03 +01:00
parent 29158ae47c
commit 487484e187

View File

@ -1,4 +1,10 @@
{pkgs, ...}: { {
inputs,
pkgs,
pkgs-stable,
userSettings,
...
}: {
nix.extraOptions = '' nix.extraOptions = ''
experimental-features = nix-command flakes experimental-features = nix-command flakes
''; '';
@ -7,6 +13,8 @@
config = ./home.nix; config = ./home.nix;
backupFileExtension = "hm-bak"; backupFileExtension = "hm-bak";
useGlobalPkgs = true; useGlobalPkgs = true;
extraSpecialArgs = {inherit inputs pkgs pkgs-stable userSettings;};
}; };
# Simply install just the packages # Simply install just the packages