blob: 9d8455eb6d6f60c5d7dc3bf54f9443abb57eff82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ 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";
};
}
|