Evie Litherland-Smith
dad605b593
Don't install programming tools with emacs, but do install as part of desktop config
41 lines
885 B
Nix
41 lines
885 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./bat/default.nix
|
|
./git/default.nix
|
|
./ssh/default.nix
|
|
./zsh/default.nix
|
|
./starship/default.nix
|
|
./bottom/default.nix
|
|
./emacs/default.nix
|
|
./scripts/default.nix
|
|
];
|
|
programs = {
|
|
bash.enable = true;
|
|
carapace.enable = true;
|
|
eza = {
|
|
enable = true;
|
|
enableAliases = true;
|
|
git = true;
|
|
icons = true;
|
|
extraOptions = ["--octal-permissions"];
|
|
};
|
|
readline = {
|
|
enable = true;
|
|
includeSystemConfig = true;
|
|
extraConfig = ''
|
|
set completion-ignore-case On
|
|
'';
|
|
};
|
|
direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
fzf = {
|
|
enable = true;
|
|
defaultCommand = "${pkgs.fd}/bin/fd --type f";
|
|
changeDirWidgetCommand = "${pkgs.fd}/bin/fd --type d";
|
|
fileWidgetCommand = "${pkgs.fd}/bin/fd --type f";
|
|
};
|
|
};
|
|
}
|