From 0f016463f212face199a50cfbfffd0a556f43fb3 Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 3 Nov 2024 17:51:44 -0600 Subject: [PATCH] feat: abstracted out nur --- nixos/modules/home-manager.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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; }; }; }