From 2435376e6e87e7f0054ec4234bfc6cdbacbab673 Mon Sep 17 00:00:00 2001 From: Tasia Iso Date: Sun, 29 Sep 2024 18:59:46 +0200 Subject: [PATCH] mnt --- hosts/vulpecula/hardware-configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hosts/vulpecula/hardware-configuration.nix b/hosts/vulpecula/hardware-configuration.nix index fe82264..de7c652 100644 --- a/hosts/vulpecula/hardware-configuration.nix +++ b/hosts/vulpecula/hardware-configuration.nix @@ -18,6 +18,11 @@ fsType = "ext4"; }; + fileSystems."/mnt" = + { device = "/dev/disk/by-uuid/f50b489b-d2fb-48f8-a8d8-c687339ed3f2"; + fsType = "ext4"; + }; + swapDevices = [ ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking @@ -28,4 +33,5 @@ # networking.interfaces.ens18.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; -} \ No newline at end of file +} +