this repo has no description
1
fork

Configure Feed

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

chore: adjust nixpkgs config

+16 -8
+3
files/nixpkgs-config.nix
··· 1 + { 2 + allowUnfree = true; 3 + }
+13 -8
modules/nix.nix
··· 3 3 inputs, 4 4 ... 5 5 }: let 6 - shared.nix.settings = { 7 - auto-optimise-store = true; 8 - experimental-features = ["nix-command" "flakes"]; 9 - trusted-users = ["root" "@wheel"]; 6 + shared = { 7 + nixpkgs.config = import ../files/nixpkgs-config.nix; 8 + 9 + nix.settings = { 10 + auto-optimise-store = true; 11 + experimental-features = ["nix-command" "flakes"]; 12 + trusted-users = ["root" "@wheel" "ovy"]; 13 + }; 10 14 }; 11 15 in 12 16 delib.module { 13 17 name = "nix"; 14 18 15 19 # TODO: double check home-manager options 16 - home.always = shared; 20 + home.always = 21 + shared 22 + // { 23 + xdg.configFile."nixpkgs/config.nix".source = ../files/nixpkgs-config.nix; 24 + }; 17 25 nixos.always = 18 26 shared 19 27 // { ··· 33 41 }; 34 42 }; 35 43 36 - nixpkgs.config.allowUnfree = true; 37 44 system.tools.nixos-option.enable = false; 38 45 }; 39 46 40 47 darwin.always = { 41 - nixpkgs.config.allowUnfree = true; 42 - 43 48 nix = { 44 49 buildMachines = [ 45 50 {