nix-config

My personal nixos and home-manager configuration
Log | Files | Refs | README

commit fe8c64af9d8a8343d5333219aa59c0f2539be23a
parent ceb79b3b50ae2f0eb9eba67a85260b0a57fcac22
Author: benjamin paul <bpaul@bpaul.xyz>
Date:   Sun, 18 Jul 2021 17:34:45 +1000

fix syntax error

Diffstat:
Mhome/modules/terminal/zsh.nix | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/home/modules/terminal/zsh.nix b/home/modules/terminal/zsh.nix @@ -18,7 +18,7 @@ in aliases = mkOption { type = types.attrsOf types.string; default = {}; - example = { a = "echo hello" }; + example = { a = "echo hello"; }; description = "Attrset of aliases"; }; }; @@ -71,9 +71,9 @@ in }; initExtra = '' - . ~/.nix-profile/etc/profile.d/nix.sh + #. ~/.nix-profile/etc/profile.d/nix.sh - #any-nix-shell zsh --info-right | source /dev/stdin + any-nix-shell zsh --info-right | source /dev/stdin PATH=$PATH:$HOME/.local/scripts:$HOME/.local/bin