From d35f304260014ea4e614e0d4b5c8ff942bd532fa Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Sep 2021 17:38:56 -0400 Subject: [PATCH] refactor: move zsh environment to zsh profile --- users/infinidoge/default.nix | 2 -- users/profiles/shells/zsh.nix | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/users/infinidoge/default.nix b/users/infinidoge/default.nix index 2d8e0ab..7a2196e 100644 --- a/users/infinidoge/default.nix +++ b/users/infinidoge/default.nix @@ -3,8 +3,6 @@ imports = suites.base; }; - environment.pathsToLink = [ "/share/zsh" ]; - users.users.infinidoge = { uid = 1000; hashedPassword = diff --git a/users/profiles/shells/zsh.nix b/users/profiles/shells/zsh.nix index 7db4991..e594332 100644 --- a/users/profiles/shells/zsh.nix +++ b/users/profiles/shells/zsh.nix @@ -48,4 +48,6 @@ starship.enableZshIntegration = lib.mkIf config.programs.starship.enable true; }; + + environment.pathsToLink = [ "/share/zsh" ]; }