this repo has no description
4
fork

Configure Feed

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

refactor: use nh from nixpkgs

dusk f06d8449 2889fc6e

+4 -24
-21
flake.lock
··· 360 360 "type": "github" 361 361 } 362 362 }, 363 - "nh": { 364 - "inputs": { 365 - "nixpkgs": [ 366 - "nixpkgs" 367 - ] 368 - }, 369 - "locked": { 370 - "lastModified": 1743682999, 371 - "narHash": "sha256-bg+aAN8K90r3m/I+xXiXG0gawpbkshwlk93wxUN7KEk=", 372 - "owner": "viperML", 373 - "repo": "nh", 374 - "rev": "9e9a4590b38b62b28f07a1fae973ce7b6ca0687a", 375 - "type": "github" 376 - }, 377 - "original": { 378 - "owner": "viperML", 379 - "repo": "nh", 380 - "type": "github" 381 - } 382 - }, 383 363 "nixinate": { 384 364 "inputs": { 385 365 "nixpkgs": [ ··· 692 672 "home": "home", 693 673 "limbusart": "limbusart", 694 674 "naked-shell": "naked-shell_2", 695 - "nh": "nh", 696 675 "nixinate": "nixinate", 697 676 "nixos-hardware": "nixos-hardware", 698 677 "nixos-persistence": "nixos-persistence",
+2 -3
flake.nix
··· 56 56 limbusart.url = "git+https://git.gaze.systems/dusk/limbusart.git"; 57 57 # limbusart.inputs.nixpkgs.follows = "nixpkgs"; 58 58 59 - nh.url = "github:viperML/nh"; 60 - nh.inputs.nixpkgs.follows = "nixpkgs"; 59 + # nh.url = "github:viperML/nh"; 60 + # nh.inputs.nixpkgs.follows = "nixpkgs"; 61 61 62 62 # discordrp-mpris.url = "github:yusdacra/discordrp-mpris-flake"; 63 63 # discordrp-mpris.inputs.nixpkgs.follows = "nixpkgs"; ··· 117 117 lib.mapAttrs (_: pkgs: { 118 118 generate-firefox-addons = toString "${pkgs.generate-firefox-addons}/bin/generate-firefox-addons"; 119 119 dns = toString "${pkgs.dnsmngmt}/bin/dns"; 120 - nh = toString "${inputs.nh.packages.${pkgs.system}.default}/bin/nh"; 121 120 }) allPkgs 122 121 ); 123 122 in
+2
shells/default.nix
··· 28 28 nixfmt-rfc-style 29 29 treefmt 30 30 rage 31 + nh 31 32 ]) 32 33 ++ [ agenix-wrapped ]; 33 34 shellHook = '' 34 35 echo \"$(tput bold)welcome to PRTS, $USER$(tput sgr0)\" 36 + export FLAKE=$PWD 35 37 ''; 36 38 }; 37 39 }