diff options
Diffstat (limited to 'users/seth/shell/default.nix')
| -rw-r--r-- | users/seth/shell/default.nix | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/users/seth/shell/default.nix b/users/seth/shell/default.nix index ae0afa8..2529a48 100644 --- a/users/seth/shell/default.nix +++ b/users/seth/shell/default.nix @@ -1,26 +1,26 @@ -{config, ...}: { - imports = [ - ./bash.nix - ./fish.nix - ./zsh - ]; +{ config, ... }: { + imports = [ + ./bash.nix + ./fish.nix + ./zsh + ]; - home.sessionVariables = { - EDITOR = "nvim"; - VISUAL = "nvim"; - CARGO_HOME = "${config.xdg.dataHome}/cargo"; - RUSTUP_HOME = "${config.xdg.dataHome}/rustup"; - LESSHISTFILE = "${config.xdg.stateHome}/less/history"; - NPM_CONFIG_USERCONFIG = "${config.xdg.configHome}/npm/npmrc"; - }; + home.sessionVariables = { + EDITOR = "nvim"; + VISUAL = "nvim"; + CARGO_HOME = "${config.xdg.dataHome}/cargo"; + RUSTUP_HOME = "${config.xdg.dataHome}/rustup"; + LESSHISTFILE = "${config.xdg.stateHome}/less/history"; + NPM_CONFIG_USERCONFIG = "${config.xdg.configHome}/npm/npmrc"; + }; - home.shellAliases = { - ls = "exa --icons"; - la = "ls -a"; - diff = "diff --color=auto"; - g = "git"; - gs = "g status"; - nixsw = "sudo nixos-rebuild switch"; - nixup = "nixsw --upgrade"; - }; + home.shellAliases = { + ls = "exa --icons"; + la = "ls -a"; + diff = "diff --color=auto"; + g = "git"; + gs = "g status"; + nixsw = "sudo nixos-rebuild switch"; + nixup = "nixsw --upgrade"; + }; } |
