Skip to content

Commit

Permalink
Update hardware-configuration.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
orzklv committed Aug 30, 2024
1 parent bf36f99 commit 371a4ce
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions nixos/parallels/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 371a4ce

Please sign in to comment.