diff --git a/nixos/modules/home-manager.nix b/nixos/modules/home-manager.nix index ddb8d9e..b482604 100755 --- a/nixos/modules/home-manager.nix +++ b/nixos/modules/home-manager.nix @@ -1,15 +1,10 @@ -{ - flake, - config, - ... -}: { +{flake, ...}: { home-manager = { useGlobalPkgs = true; useUserPackages = true; backupFileExtension = "backup"; extraSpecialArgs = { inherit flake; - inherit (config) nur; }; }; }