programs/common.nix (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
{ config
, pkgs
, self
, ...
}:
{
imports = [
./git.nix
./tmux.nix
./readline.nix
./neovim.nix
./bash.nix
./ssh.nix
./alacritty.nix
./fish.nix
./zed/default.nix
];
programs = {
home-manager.enable = true;
direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv = {
enable = true;
};
};
zoxide = {
enable = true;
enableBashIntegration = true;
};
htop = {
enable = true;
settings.color_scheme = 1;
};
};
}
|