this repo has no description
1
fork

Configure Feed

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

nightline: install all firmware

+8 -1
+1 -1
hosts/wallsocket/hardware.nix
··· 16 16 nixpkgs.hostPlatform = platform; 17 17 system.stateVersion = stateVersion; 18 18 19 - hardware.enableRedistributableFirmware = true; 19 + hardware.enableAllFirmware = true; 20 20 hardware.cpu.amd.updateMicrocode = true; 21 21 22 22 # Kernel
+7
modules/nix.nix
··· 22 22 // { 23 23 xdg.configFile."nixpkgs/config.nix".source = ../files/nixpkgs-config.nix; 24 24 }; 25 + 25 26 nixos.always = 26 27 shared 27 28 // { ··· 38 39 type = "path"; 39 40 path = inputs.nixpkgs; 40 41 narHash = inputs.nixpkgs.narHash; 42 + }; 43 + 44 + settings = { 45 + auto-optimise-store = true; 46 + experimental-features = ["nix-command" "flakes"]; 47 + trusted-users = ["root" "@wheel" "ovy"]; 41 48 }; 42 49 }; 43 50