my nix config
0
fork

Configure Feed

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

at master 25 lines 488 B view raw
1let 2 npins = import ./npins; 3 idc = import npins.idc; 4in 5import npins.nixpkgs { 6 config = { 7 allowUnfree = true; 8 }; 9 10 overlays = [ 11 (self: super: { 12 inherit (import npins.zen-browser-flake { pkgs = super; }) zen-browser; 13 nur = import npins.nur { 14 pkgs = super; 15 nurpkgs = super; 16 }; 17 }) 18 (idc { 19 src = npins.ElyPrismLauncher.outPath; 20 }).overlays.default 21 (idc { 22 src = npins.niri-flake.outPath; 23 }).overlays.niri 24 ]; 25}