summaryrefslogtreecommitdiff
path: root/hardware-configuration.nix
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-05-26 05:56:01 +0000
committerGitHub <noreply@github.com>2026-05-26 05:56:01 +0000
commitccff75ce40f47d233ccbda36e11648ff6f841b35 (patch)
tree9d6a5b808c483ce40102e38a3c74c81183554aa4 /hardware-configuration.nix
parent1303a403ed9bb65784d0a7f731f374adfd18e3d8 (diff)
update to 26.05
Diffstat (limited to 'hardware-configuration.nix')
-rw-r--r--hardware-configuration.nix14
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;
}