Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

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

UPDATE: keys, real docker, attempts at faster code

+13 -3
+7 -1
hardware-configuration.nix
··· 52 52 # networking.interfaces.enp1s0.useDHCP = lib.mkDefault true; 53 53 # networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true; 54 54 55 - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; 55 + nixpkgs.hostPlatform = { 56 + #gcc.arch = "znver2"; 57 + #gcc.tune = "znver2"; 58 + system = "x86_64-linux"; 59 + #gcc.arch = "x86-64-v3"; 60 + }; 61 + #nix.settings.system-features = ["gccarch-znver2" "big-parallel" "nixos-test" "benchmark" "kvm"]; 56 62 hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; 57 63 }
+5 -1
services.nix
··· 31 31 # Containers and VMs 32 32 virtualisation = { 33 33 podman = { 34 - enable = true; 34 + enable = false; 35 35 dockerCompat = true; 36 36 defaultNetwork.settings.dns_enabled = true; 37 37 dockerSocket.enable = true; 38 + }; 39 + docker = { 40 + enable = true; 41 + storageDriver = "overlay2"; 38 42 }; 39 43 }; 40 44 }
+1 -1
users.nix
··· 28 28 name = "chiefnoah.keys"; 29 29 # Update this with: 30 30 # `curl https://meta.sr.ht/~chiefnoah.keys | sha256sum` 31 - sha256 = "2db14a862b5baf7d076f3ddd7d10bdc7afa67a390eb778de50ec0f982b93b6a1"; 31 + sha256 = "19x8lim69kd06spqxjs7ril68izrqzkgqdvn45z2vkqgkw0jjzxh"; 32 32 })); 33 33 }; 34 34