diff options
Diffstat (limited to '')
-rw-r--r-- | home-manager/config/zsh/default.nix | 7 | ||||
-rw-r--r-- | system/users/default.nix | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/home-manager/config/zsh/default.nix b/home-manager/config/zsh/default.nix index 533c8b17..94dea060 100644 --- a/home-manager/config/zsh/default.nix +++ b/home-manager/config/zsh/default.nix @@ -42,7 +42,7 @@ eval $(ssh-agent -s) > /dev/null # start ssh agent export ENHANCHED_NEOFETCH="$(pacman -Qn | wc -l) (pacman), $(pacman -Qm | wc -l) (aur), $(($(cargo install --list | wc -l ) / 2)) (cargo)" '' - + lib.concatStringsSep "setopt" [ + + lib.concatStringsSep "\nsetopt " [ "AUTO_CD" "AUTO_PUSHD" "CHASE_DOTS" @@ -80,10 +80,9 @@ TIMEFMT = "'$fg[green]%J$reset_color' time: $fg[blue]%*Es$reset_color, cpu: $fg[blue]%P$reset_color"; # no idea what this does or why it is needed REPORTTIME = "10"; - PATH = [ - "\${PATH}:/home/dt/repos/shell/scripts" + PATH = lib.concatStringsSep ":" [ "/home/dt/.local/bin" - "/home/dt/.local/share/cargo/bin/" + "/home/dt/.local/share/cargo/bin" ]; EDITOR = "nvim"; IVIEWER = "imv"; diff --git a/system/users/default.nix b/system/users/default.nix index adff5df3..97cf2ee0 100644 --- a/system/users/default.nix +++ b/system/users/default.nix @@ -23,7 +23,7 @@ in { isNormalUser = true; home = "/home/soispha"; createHome = true; - shell = pkgs.zsh; + # shell = pkgs.zsh; initialHashedPassword = cfg.hashedPassword; extraGroups = [ "wheel" |