nixos-config/modules/home-manager/profiles/dev.nix
Gabriel Arazas c8dc2b57ce
profiles/dev: replace exa with eza
Unmaintained and also in a state of being removed in nixpkgs.
2023-09-15 12:54:49 +08:00

179 lines
5.3 KiB
Nix

# Arsenal for development (which is rare nowadays). ;p
# If you're looking for text editors, go to `./editors.nix`.
{ config, options, lib, pkgs, ... }:
let cfg = config.profiles.dev;
in {
options.profiles.dev = {
enable =
lib.mkEnableOption "foo-dogsquared's user-specific development setup";
shell.enable =
lib.mkEnableOption "configuration of foo-dogsquared's shell of choice";
extras.enable = lib.mkEnableOption "additional tools for development stuff";
};
config = lib.mkIf cfg.enable (lib.mkMerge [
({
home.packages = with pkgs; [
cookiecutter # Cookiecutter templates for your mama (which is you).
dasel # Universal version of jq.
gopass # An improved version of the password manager for hipsters.
moar # More 'more'.
perlPackages.vidir # Bulk rename for your organizing needs in the terminal.
tealdeer # An easy cop-out for basic help.
# Coreutils replacement.
fd # Oh nice, a more reliable `find`.
ripgrep # On nice, a more reliable `grep`.
eza # Oh nice, a shinier `ls`.
];
# Git interface for the lazy who cannot be asked to add hunks properly.
programs.lazygit = {
enable = true;
settings = {
gui = {
expandFocusedSidePanel = true;
showBottomLine = false;
skipRewordInEditorWarning = true;
theme = {
selectedLineBgColor = [ "reverse" ];
selectedRangeBgColor = [ "reverse" ];
};
};
notARepository = "skip";
};
};
# A fuzzy finder that enables fuzzy finding not furry finding, a common misconception.
programs.fzf =
let
fd = "${lib.getBin pkgs.fd}/bin/fd";
in
{
enable = true;
changeDirWidgetCommand = "${fd} --type directory --unrestricted";
defaultCommand = "${fd} --type file --hidden";
};
# The file manager of choice.
programs.lf = {
enable = true;
keybindings = {
"<enter>" = "shell";
"gr" = "cd /";
};
settings = {
# Aesthetics.
color256 = true;
dircounts = true;
hidden = true;
drawbox = true;
timefmt = "2006-01-02 15:04:05";
# Scrolling options.
wrapscroll = true;
scrolloff = 10;
};
extraConfig = ''
cmap <tab> cmd-menu-complete
cmap <backtab> cmd-menu-complete-back
'';
};
# dog > sky dog > cat.
programs.bat = {
enable = true;
config = {
pager = "${lib.getBin pkgs.moar}/bin/moar";
theme = "base16";
style = "plain";
};
};
# Modern tmux? Yeah, modern tmux! For layout configurations, they are
# more individualized so just set your home-manager users individually
# with those. pls?
programs.zellij = {
enable = true;
settings = {
mouse_mode = false;
copy_on_select = false;
pane_frames = false;
};
};
})
(lib.mkIf cfg.shell.enable {
programs.bash = {
enable = true;
historyControl = [ "erasedups" "ignoredups" "ignorespace" ];
historyIgnore = [
"cd"
"exit"
"lf"
"ls"
"nvim"
];
};
# Supercharging your shell history. Just don't forget to flush them out
# before doing questionable things.
programs.atuin = {
enable = true;
flags = [ "--disable-up-arrow" ];
settings = {
search_mode = "fuzzy";
filter_mode = "global";
};
};
# virtualenv but for anything else.
programs.direnv = {
enable = true;
config.global = {
load_dotenv = true;
strict_env = true;
};
nix-direnv.enable = true;
};
# Learn teleportation in the filesystem.
programs.zoxide.enable = true;
# Some lazy bastard's shell prompt configuration.
programs.starship = {
enable = true;
settings = {
add_newline = false;
hostname = {
ssh_only = false;
trim_at = "";
};
};
};
})
(lib.mkIf cfg.extras.enable {
home.packages = with pkgs; [
act # Test your CI without embarrassing yourself repeatedly pushing into GitHub repos.
github-cli # So you don't have to use much of GitHub on the site, I guess.
gum # The fancy shell script toolkit.
hut # So you don't have to see much of Sourcehut's brutalist design, I guess.
hyperfine # Making sure your apps are not just fine but REEEEEEAAAAALY fine.
irssi # Communicate in the terminal like a normal person.
license-cli # A nice generator template for license files.
quilt # Patching right up yer' alley.
tokei # Stroking your programming ego by how many lines of C you've written.
tree-sitter # The modern way of text highlighting.
treefmt # I like the tagline of this tool: "One CLI for formatting your code tree." (It rhymes somewhat.)
vhs # Declarative terminal tool demo.
zenith # Very fanciful system dashboard.
];
})
]);
}