From c6cc64e1566485202da94ae96f26ac62f661e24c Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 25 Sep 2021 15:10:20 +0200 Subject: [PATCH] modules: home: put into folder --- modules/default.nix | 2 +- modules/{home.nix => home/default.nix} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename modules/{home.nix => home/default.nix} (91%) diff --git a/modules/default.nix b/modules/default.nix index d9c6c68..d9b4ce2 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -4,7 +4,7 @@ { imports = [ ./hardware - ./home.nix + ./home ./programs ./services ./system diff --git a/modules/home.nix b/modules/home/default.nix similarity index 91% rename from modules/home.nix rename to modules/home/default.nix index 8ae1b3e..4745c0c 100644 --- a/modules/home.nix +++ b/modules/home/default.nix @@ -14,7 +14,7 @@ in config = lib.mkIf cfg.enable { home-manager = { # Not a fan of out-of-directory imports, but this is a good exception - users.${config.my.user.name} = import ../home; + users.${config.my.user.name} = import ../../home; # Nix Flakes compatibility useGlobalPkgs = true;