From 371a4ce0c782e11331ee3722d5acecb02cdcbad1 Mon Sep 17 00:00:00 2001 From: Sokhibjon Orzikulov Date: Fri, 30 Aug 2024 23:28:27 +0500 Subject: [PATCH] Update hardware-configuration.nix --- nixos/parallels/hardware-configuration.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nixos/parallels/hardware-configuration.nix b/nixos/parallels/hardware-configuration.nix index 096dc03..189ae0b 100644 --- a/nixos/parallels/hardware-configuration.nix +++ b/nixos/parallels/hardware-configuration.nix @@ -17,19 +17,20 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/caf807d3-bb74-462e-8c8b-052474394cab"; + { + device = "/dev/disk/by-uuid/caf807d3-bb74-462e-8c8b-052474394cab"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/14F8-6F1F"; + { + device = "/dev/disk/by-uuid/14F8-6F1F"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; swapDevices = - [ { device = "/dev/disk/by-uuid/ccce9ab2-e2d7-40e8-880d-2aae2527447a"; } - ]; + [{ device = "/dev/disk/by-uuid/ccce9ab2-e2d7-40e8-880d-2aae2527447a"; }]; # 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