diff --git a/hosts/pancake/hardware-configuration.nix b/hosts/pancake/hardware-configuration.nix index e4ee4f4..455ba76 100644 --- a/hosts/pancake/hardware-configuration.nix +++ b/hosts/pancake/hardware-configuration.nix @@ -14,17 +14,19 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/cb6f0e18-5add-4177-ab98-e9f0235e06b3"; + { device = "/dev/disk/by-uuid/b84680de-5010-457a-9be8-8867571119fc"; fsType = "ext4"; }; - fileSystems."/boot/firmware" = - { device = "/dev/disk/by-uuid/D3E6-3F09"; + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/CD4A-62EC"; fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; + options = [ "fmask=0077" "dmask=0077" ]; }; - swapDevices = [ ]; + swapDevices = + [ { device = "/dev/disk/by-uuid/8ffcfec9-0e05-41a0-bdb6-b34c8259eca0"; } + ]; # 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 @@ -32,6 +34,7 @@ # with explicit per-interface declarations with `networking.interfaces..useDHCP`. networking.useDHCP = lib.mkDefault true; # networking.interfaces.eth0.useDHCP = lib.mkDefault true; + # networking.interfaces.tailscale0.useDHCP = lib.mkDefault true; # networking.interfaces.wlan0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";