My Nix Configuration
2
fork

Configure Feed

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

at main 18 lines 308 B view raw
1{ 2 inputs, 3 ... 4}: 5{ 6 nixpkgs = { 7 overlays = [ 8 inputs.self.overlays.openssh-fixperms 9 inputs.self.overlays.stl-gitmin 10 inputs.agenix.overlays.default 11 inputs.glide.overlays.default 12 inputs.golink.overlays.default 13 ]; 14 config = { 15 allowUnfree = true; 16 }; 17 }; 18}