From 46bea7407b04404ddfb8681eabf271300a7b29a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sat, 28 Oct 2023 10:14:39 +0200 Subject: [PATCH] drop home-manager from NIX_PATH this is using flakes now --- nixos/modules/nix-path.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/nixos/modules/nix-path.nix b/nixos/modules/nix-path.nix index 1a47b23fe..fe8f50b2f 100644 --- a/nixos/modules/nix-path.nix +++ b/nixos/modules/nix-path.nix @@ -1,7 +1,3 @@ -{ inputs, ... }: -{ - nix.nixPath = [ - "nixpkgs=${inputs.nixpkgs}" - "home-manager=${inputs.home-manager}" - ]; +{ inputs, ... }: { + nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; }