From 1a3486d77574c06b395ab6cda41084f5ed24a3f4 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 16 Jan 2025 02:11:26 -0800 Subject: modularized nix configuration; builds correctly --- nix/modules/home/home.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'nix/modules/home/home.nix') diff --git a/nix/modules/home/home.nix b/nix/modules/home/home.nix index d82445a..aa55550 100644 --- a/nix/modules/home/home.nix +++ b/nix/modules/home/home.nix @@ -1,15 +1,11 @@ { config, sops-nix, ... }: { - imports = [ - ../default.nix - ]; - home-manager = { sharedModules = [ sops-nix.homeManagerModules.sops ]; useGlobalPkgs = true; useUserPackages = true; - users."${config.monorepo.vars.userName}" = import ./user.nix; + users."${config.monorepo.vars.userName}" = import ./default.nix; }; } -- cgit