(mirror) personal dotfiles github.com/crescentrose/dotfiles
at main 31 lines 610 B view raw
1{ pkgs, ... }: 2{ 3 imports = [ 4 ./developer.nix 5 ./nu.nix 6 ./ripgrep.nix 7 ./starship.nix 8 ]; 9 10 home.packages = with pkgs; [ 11 # cli apps 12 bat # nicer cat 13 broot # trees 14 dig # it's always DNS 15 fastfetch # r/unixporn bait 16 fortune # wisdom 17 gh # github client 18 imagemagick # magic of the image variety 19 difftastic # syntax-aware diff 20 jujutsu # fine, i will try it... 21 xh # curl at home 22 23 # developer tools 24 agebox # secret 25 age # more secret 26 lefthook # git hooks 27 gnumake # for the heathens 28 ]; 29 30 xdg.dataFile."scripts".source = ../../scripts; 31}