diff --git a/nixos-configurations/laptop/hardware-configuration.nix b/nixos-configurations/laptop/hardware-configuration.nix index 28225ad..2fe0ce7 100644 --- a/nixos-configurations/laptop/hardware-configuration.nix +++ b/nixos-configurations/laptop/hardware-configuration.nix @@ -14,29 +14,18 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/f96b81fc-fd4c-4177-84b8-3e6b789db470"; - fsType = "btrfs"; - options = [ "subvol=root" ]; - }; - - fileSystems."/home" = - { device = "/dev/disk/by-uuid/f96b81fc-fd4c-4177-84b8-3e6b789db470"; - fsType = "btrfs"; - options = [ "subvol=home" ]; - }; - - fileSystems."/nix" = - { device = "/dev/disk/by-uuid/f96b81fc-fd4c-4177-84b8-3e6b789db470"; - fsType = "btrfs"; - options = [ "subvol=nix" ]; + { device = "/dev/disk/by-uuid/419dc0da-d867-4253-bfdb-df8f929bf8a7"; + fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/F1E9-8C98"; + { device = "/dev/disk/by-uuid/79BB-04D4"; fsType = "vfat"; }; - swapDevices = [ ]; + swapDevices = + [ { device = "/dev/disk/by-uuid/22f53bc4-c279-4b1d-a0b0-cffa509bd3f0"; } + ]; # 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