summaryrefslogtreecommitdiff
path: root/seth/shell/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'seth/shell/default.nix')
-rw-r--r--seth/shell/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/seth/shell/default.nix b/seth/shell/default.nix
deleted file mode 100644
index 9d8455e..0000000
--- a/seth/shell/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ config, pkgs, ... }:
-
-{
- imports = [
- ./bash.nix
- ./fish.nix
- ./zsh.nix
- ];
-
- home.sessionVariables = {
- EDITOR = pkgs.neovim;
- VISUAL = pkgs.neovim;
- 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";
- };
-}