nixos configurations and tools for managing the Gemstone Labs, my personal homelab
0
fork

Configure Feed

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

at main 17 lines 224 B view raw
1{ 2 pins, 3 extraOverlays ? [ ], 4 system ? builtins.currentSystem, 5}: 6 7import pins.nixpkgs { 8 inherit system; 9 10 config = { 11 allowUnfree = true; 12 }; 13 14 overlays = extraOverlays ++ [ 15 (import ./packages pins) 16 ]; 17}