{ config, pkgs, lib, ... }: { users.users.${config.user}.shell = pkgs.fish; programs.fish.enable = true; # Needed for LightDM to remember username (TODO: fix) home-manager.users.${config.user} = { # Packages used in abbreviations and aliases home.packages = with pkgs; [ curl ]; programs.fish = { enable = true; functions = { commandline-git-commits = { description = "Insert commit into commandline"; body = builtins.readFile ./functions/commandline-git-commits.fish; }; copy = { description = "Copy file contents into clipboard"; body = "cat $argv | pbcopy"; # Need to fix for non-macOS }; edit = { description = "Open a file in Vim"; body = builtins.readFile ./functions/edit.fish; }; envs = { description = "Evaluate a bash-like environment variables file"; body = ''set -gx (cat $argv | tr "=" " " | string split ' ')''; }; fcd = { description = "Jump to directory"; argumentNames = "directory"; body = builtins.readFile ./functions/fcd.fish; }; fish_user_key_bindings = { body = builtins.readFile ./functions/fish_user_key_bindings.fish; }; ip = { body = builtins.readFile ./functions/ip.fish; }; json = { description = "Tidy up JSON using jq"; body = "pbpaste | jq '.' | pbcopy"; # Need to fix for non-macOS }; ls = { body = "${pkgs.exa}/bin/exa $argv"; }; nix-shell-run = { body = '' set program $argv[1] if test (count $argv) -ge 1 commandline -r "nix run nixpkgs#$program -- $argv[2..-1]" else commandline -r "nix run nixpkgs#$program" end commandline -f execute ''; }; note = { description = "Edit or create a note"; argumentNames = "filename"; body = builtins.readFile ./functions/note.fish; }; recent = { description = "Open a recent file in Vim"; body = builtins.readFile ./functions/recent.fish; }; search-and-edit = { description = "Search and open the relevant file in Vim"; body = builtins.readFile ./functions/search-and-edit.fish; }; syncnotes = { description = "Full git commit on notes"; body = builtins.readFile ./functions/syncnotes.fish; }; }; interactiveShellInit = '' fish_vi_key_bindings bind yy fish_clipboard_copy bind Y fish_clipboard_copy bind -M visual y fish_clipboard_copy bind -M default p fish_clipboard_paste set -g fish_vi_force_cursor set -g fish_cursor_default block set -g fish_cursor_insert line set -g fish_cursor_visual block set -g fish_cursor_replace_one underscore ''; loginShellInit = ""; shellAliases = { }; shellAbbrs = { # Directory aliases l = "ls -lh"; lh = "ls -lh"; ll = "ls -alhF"; la = "ls -a"; c = "cd"; "-" = "cd -"; mkd = "mkdir -pv"; # System s = "sudo"; sc = "systemctl"; scs = "systemctl status"; m = "make"; # Vim (overwritten by Neovim) v = "vim"; vl = "vim -c 'normal! `0'"; # Notes sn = "syncnotes"; # Fun CLI Tools weather = "curl wttr.in/$WEATHER_CITY"; moon = "curl wttr.in/Moon"; # Cheat Sheets ssl = "openssl req -new -newkey rsa:2048 -nodes -keyout server.key -out server.csr"; fingerprint = "ssh-keyscan myhost.com | ssh-keygen -lf -"; publickey = "ssh-keygen -y -f ~/.ssh/id_rsa > ~/.ssh/id_rsa.pub"; forloop = "for i in (seq 1 100)"; # Nix ns = "nix-shell -p"; nsr = "nix-shell-run"; nps = "nix repl ''"; nixo = "man configuration.nix"; nixh = "man home-configuration.nix"; # Docker dc = "$DOTS/bin/docker_cleanup"; dr = "docker run --rm -it"; db = "docker build . -t"; # Rust ca = "cargo"; }; shellInit = ""; }; home.sessionVariables.fish_greeting = ""; programs.starship.enableFishIntegration = true; programs.zoxide.enableFishIntegration = true; programs.fzf.enableFishIntegration = true; # Provides "command-not-found" options # Requires activating a manual download programs.nix-index = { enable = true; enableFishIntegration = true; }; }; }