diff options
Diffstat (limited to 'home/trent/common/core/zsh/default.nix')
| -rw-r--r-- | home/trent/common/core/zsh/default.nix | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/home/trent/common/core/zsh/default.nix b/home/trent/common/core/zsh/default.nix deleted file mode 100644 index 8c84501..0000000 --- a/home/trent/common/core/zsh/default.nix +++ /dev/null @@ -1,51 +0,0 @@ -{ lib, pkgs, ... }: -{ - programs.zsh = { - enable = true; - - history = { - save = 100000; - size = 100000; - }; - - initContent = (builtins.readFile ./zshrc); - - sessionVariables = let makePluginPath = format: - (lib.strings.makeSearchPath format [ - "$HOME/.nix-profile/lib" - "/run/current-system/sw/lib" - "/etc/profiles/per-user/$USER/lib" - ]) + ":$HOME/.${format}"; - in { - _JAVA_AWT_WM_NONREPARENTING = 1; # fix stupid broken Java shit - BROWSER = "firefox"; - COLORFGBG = ";0"; - #COLORFGBG = "green;blue"; - #COLORTERM = "truecolor"; - EDITOR = "vim"; - LC_COLLATE = "C"; - PAGER = "less"; - #PASSWORD_STORE_ENABLE_EXTENSIONS = "true"; - PATH = "$HOME/bin:$PATH"; - #PS1 = "%B%n%b@%U%m%u/%l:%~> "; - QUOTING_STYLE = "literal"; - }; - - shellAliases = { - FIXCAPS = "xdotool key Caps_Lock"; - fixkeyboard = "setxkbmap -layout us -option caps:super -option compose:ralt"; - ftp = "${pkgs.inetutils}/bin/ftp"; - #geniso = "nix build ~/git/nix/nipsy#nixosConfigurations.iso.config.system.build.isoImage && ll result/iso/*iso"; - grep = "grep --color=auto"; - ip = "ip -c=auto"; - la = "ls -aF --color=auto"; - ll = "ls -alFhs --color=auto"; - #lock = "xscreensaver-command -lock"; - nix-list-derivations = "nix-store --query --requisites /run/current-system | cut -d- -f2- | sort | uniq"; - nix-list-generations = "nixos-rebuild list-generations"; - steam-no-beta = "steam -clearbeta"; - telnet = "${pkgs.inetutils}/bin/telnet"; - zgrep = "zgrep --color=auto"; - }; - }; -} |
