From 439a3c24307909d47166d8138d72a61e6f49818e Mon Sep 17 00:00:00 2001 From: hms Date: Sun, 30 Aug 2020 16:01:07 -0700 Subject: [PATCH] home path modified --- configuration.nix | 2 +- home.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index b186063..323b799 100644 --- a/configuration.nix +++ b/configuration.nix @@ -109,7 +109,7 @@ #### User users.users.hms = { isNormalUser = true; - home = "/home/hms/"; + home = "/home/hms"; extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. }; diff --git a/home.nix b/home.nix index a446211..9519a98 100644 --- a/home.nix +++ b/home.nix @@ -13,7 +13,7 @@ # Home Manager needs a bit of information about you and the # paths it should manage. home.username = "hms"; - home.homeDirectory = "/home/hms/"; + home.homeDirectory = "/home/hms"; # This value determines the Home Manager release that your # configuration is compatible with. This helps avoid breakage