diff options
Diffstat (limited to 'hardware-configuration.nix')
| -rw-r--r-- | hardware-configuration.nix | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix index c5d7f20..a925e9b 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -14,26 +14,18 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/5ea6ee93-a059-4711-8658-48d5b376751d"; + { device = "/dev/disk/by-uuid/2e9244f1-463e-465a-914e-28ab18837d77"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/2ECD-DD79"; + { device = "/dev/disk/by-uuid/C0B5-C3DE"; fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; + options = [ "fmask=0077" "dmask=0077" ]; }; swapDevices = [ ]; - # Enables DHCP on each ethernet and wireless interface. In case of scripted networking - # (the default) this is the recommended approach. When using systemd-networkd it's - # 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.wlp2s0.useDHCP = lib.mkDefault true; - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } |
