{ config, lib, pkgs, ... }: { imports = [ ./adb.nix ./bin ./direnv.nix ./git.nix ./nix.nix ./ssh.nix ./shell ]; modules.cli.shell = let # HACK to fix 24bit color support with kitty editor = "TERM=kitty-direct emacsclient -t -a 'emacs -t'"; in { name = "fish"; abbreviations = { us = "systemctl --user"; rs = "doas systemctl"; ga = "git add"; gb = "git branch"; gc = "git commit"; gco = "git checkout"; gd = "git diff"; gds = "git diff --staged"; gp = "git push"; gs = "git status"; }; aliases = { du = "dust"; ls = "exa -lh --icons --git"; cat = "bat"; feh = "feh --auto-zoom --scale-down"; grep = "rg"; rm = "rm -i"; mv = "mv -i"; # HACK to fix kitty not being recongized ssh = "TERM=xterm-color command ssh"; nix-switch = "doas nixos-rebuild switch --flake ~/.dotfiles"; nix-boot = "doas nixos-rebuild boot --flake ~/.dotfiles"; nix-lock = "doas nixos-rebuild dry-activate --flake ~/.dotfiles --recreate-lock-file"; emacs = editor; }; variables = { EDITOR = editor; }; }; home-manager.users.moritz = { home.packages = with pkgs; [ # archives p7zip # file management ranger trash-cli # monitoring htop # fetcher neofetch # typing ttyper # ripping abcde handbrake # utility cht-sh ]; programs = { bat.enable = true; command-not-found.enable = true; exa.enable = true; fzf.enable = true; gpg.enable = true; starship.enable = true; }; }; }