My Nix Configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 2c3fa32346506d1b4fc95adb5eefa2a6a0a77a7e 27 lines 445 B view raw
1{ 2 pkgs, 3 lib, 4 ... 5}: 6pkgs.mkShellNoCC { 7 packages = [ 8 # keep-sorted start 9 pkgs.age 10 pkgs.deadnix 11 pkgs.just 12 pkgs.nil 13 pkgs.nix-output-monitor 14 pkgs.nix-tree 15 pkgs.nix-update 16 pkgs.nixd 17 pkgs.nixfmt 18 pkgs.nixos-rebuild-ng 19 pkgs.nvd 20 pkgs.statix 21 pkgs.tokei 22 (pkgs.writeShellScriptBin "an" '' 23 ${lib.getExe' pkgs.agenix "agenix"} -i ~/.age/age-new $@ 24 '') 25 # keep-sorted end 26 ]; 27}