From 412d5347cc4141cfd752b5065691dc5ee5069925 Mon Sep 17 00:00:00 2001 From: aloslider <53711835+aloslider@users.noreply.github.com> Date: Thu, 5 Mar 2026 16:09:49 +0300 Subject: [PATCH] Update hardware --- hardware-configuration.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 52c6a02..e33ea23 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -14,24 +14,17 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/8d38919d-4aab-4d2d-a757-72bc6499e377"; + { device = "/dev/disk/by-uuid/5454b429-e268-4399-9eaf-48e16951d1b4"; fsType = "btrfs"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/AAE3-A089"; + { device = "/dev/disk/by-uuid/F6C1-695C"; fsType = "vfat"; 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..useDHCP`. - networking.useDHCP = lib.mkDefault true; - # networking.interfaces.enp1s0.useDHCP = lib.mkDefault true; - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; }