My Nix Configuration
2
fork

Configure Feed

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

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