diff options
author | polwex <polwex@sortug.com> | 2024-09-05 12:42:01 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2024-09-05 12:42:01 +0700 |
commit | b7ef804b1d92d409b55c955fcfbaec8ceb62063a (patch) | |
tree | e5f05241a260ca4c0bb73e9a4f40707b797ce6fb /hosts/local/master/hardware-configuration.nix | |
parent | 6a7fa5ae7c243b3dd1f0d5a4221c3b69a4bdbab7 (diff) |
m
Diffstat (limited to 'hosts/local/master/hardware-configuration.nix')
-rw-r--r-- | hosts/local/master/hardware-configuration.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hosts/local/master/hardware-configuration.nix b/hosts/local/master/hardware-configuration.nix index fc5597c..6e2ed9f 100644 --- a/hosts/local/master/hardware-configuration.nix +++ b/hosts/local/master/hardware-configuration.nix @@ -14,17 +14,18 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/13b360be-0528-4690-b7ab-80c89033c5b7"; + { device = "/dev/disk/by-uuid/3f1343f2-1ba3-4c57-b95e-bb808d3dffd3"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/92AC-1484"; + { device = "/dev/disk/by-uuid/C676-FD24"; fsType = "vfat"; + options = [ "fmask=0077" "dmask=0077" ]; }; swapDevices = - [ { device = "/dev/disk/by-uuid/0b5d123f-3832-4aa2-b486-c64ed476fcf9"; } + [ { device = "/dev/disk/by-uuid/e34d7981-458b-462a-b551-007bce4f40f9"; } ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking @@ -32,9 +33,8 @@ # still possible to use this option, but it's recommended to use it in conjunction # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. networking.useDHCP = lib.mkDefault true; - # networking.interfaces.docker0.useDHCP = lib.mkDefault true; - # networking.interfaces.enp3s0.useDHCP = lib.mkDefault true; - # networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true; + # networking.interfaces.enp4s0.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp5s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; |