diff --git a/hosts/ryanpandya/hardware-configuration.nix b/hosts/ryanpandya/hardware-configuration.nix index 603cb65..4f031c2 100644 --- a/hosts/ryanpandya/hardware-configuration.nix +++ b/hosts/ryanpandya/hardware-configuration.nix @@ -14,32 +14,19 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "tmpfs"; - fsType = "tmpfs"; + { device = "/dev/disk/by-uuid/1fa30915-49a8-46b8-b9b7-b298fb5c12c2"; + fsType = "ext4"; }; - fileSystems."/iso" = - { device = "/dev/disk/by-uuid/1980-01-01-00-00-00-00"; - fsType = "iso9660"; + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/9897-75EA"; + fsType = "vfat"; + options = [ "fmask=0077" "dmask=0077" ]; }; - fileSystems."/nix/.ro-store" = - { device = "/iso/nix-store.squashfs"; - fsType = "squashfs"; - options = [ "loop" ]; - }; - - fileSystems."/nix/.rw-store" = - { device = "tmpfs"; - fsType = "tmpfs"; - }; - - fileSystems."/nix/store" = - { device = "overlay"; - fsType = "overlay"; - }; - - swapDevices = [ ]; + swapDevices = + [ { device = "/dev/disk/by-uuid/073ce40c-8c8c-4a60-bc27-055d9cb78388"; } + ]; # 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 @@ -49,4 +36,4 @@ # networking.interfaces.ens3.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; -} \ No newline at end of file +}