nix all the things

dev: get rid of prr

-12
-1
modules/home/dev/default.nix
··· 8 8 ./mise.nix 9 9 ./nushell.nix 10 10 ./opencode.nix 11 - ./prr.nix 12 11 ./starship.nix 13 12 ./utils.nix 14 13 ./yazi.nix
-11
modules/home/dev/prr.nix
··· 1 - {pkgs, ...}: let 2 - settingsFormat = pkgs.formats.toml {}; 3 - in { 4 - home.packages = [pkgs.prr]; 5 - xdg.configFile."prr/config.toml".source = settingsFormat.generate "config.toml" { 6 - prr = { 7 - token = ""; # read env 8 - activate_pr_metadata_experiment = true; 9 - }; 10 - }; 11 - }