this repo has no description
2
fork

Configure Feed

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

fix up curve-hardware

+12 -12
+12 -12
hosts/curve/hardware-configuration.nix
··· 14 14 boot.kernelModules = [ "kvm-intel" ]; 15 15 boot.extraModulePackages = [ ]; 16 16 17 + fileSystems."/boot" = 18 + { 19 + device = "/dev/disk/by-uuid/2C41-3DAA"; 20 + fsType = "vfat"; 21 + }; 22 + 17 23 fileSystems."/" = 18 24 { 19 - device = "/dev/disk/by-uuid/74ba39ee-35cd-4b87-9ee9-651384fa55bd"; 25 + device = "/dev/disk/by-uuid/a4ae2855-10b9-49f3-adb0-acd82b74eeb9"; 20 26 fsType = "btrfs"; 21 27 options = [ "subvol=root" ]; 22 28 }; 23 29 24 30 fileSystems."/home" = 25 31 { 26 - device = "/dev/disk/by-uuid/74ba39ee-35cd-4b87-9ee9-651384fa55bd"; 32 + device = "/dev/disk/by-uuid/a4ae2855-10b9-49f3-adb0-acd82b74eeb9"; 27 33 fsType = "btrfs"; 28 34 options = [ "subvol=home" ]; 29 35 }; 30 36 31 - fileSystems."/boot" = 32 - { 33 - device = "/dev/disk/by-uuid/87DA-98E7"; 34 - fsType = "vfat"; 35 - }; 36 - 37 37 swapDevices = 38 - [{ device = "/dev/disk/by-uuid/c36e3ba9-8eee-4fbf-837c-7e1cfda33f09"; }]; 38 + [{ device = "/dev/disk/by-uuid/23658926-6ffa-42dc-8915-a6479c385e0b"; }]; 39 39 40 40 # Enables DHCP on each ethernet and wireless interface. In case of scripted networking 41 41 # (the default) this is the recommended approach. When using systemd-networkd it's 42 42 # still possible to use this option, but it's recommended to use it in conjunction 43 43 # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. 44 - # networking.useDHCP = lib.mkDefault true; 44 + networking.useDHCP = lib.mkDefault true; 45 45 # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true; 46 46 # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true; 47 47 48 + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; 48 49 powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; 49 - hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; 50 - nixpkgs.hostPlatform = "x86_64-linux"; 50 + # hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; 51 51 }