@@ 14,12 14,12 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
- { device = "/dev/disk/by-uuid/d023b129-caaa-46c4-9848-52c712760b2a";
+ { device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
swapDevices =
- [ { device = "/dev/disk/by-uuid/aa498dcc-a914-4730-ae9d-ea23dca89ccb"; }
+ [ { device = "/dev/disk/by-label/swap"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
@@ 28,6 28,7 @@
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp1s0.useDHCP = lib.mkDefault true;
+ # networking.interfaces.wg0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}