diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-19 18:48:17 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-19 18:48:17 +0200 |
| commit | 93d9d01abf82fcd520c3d0c08440c9e9747654f1 (patch) | |
| tree | 9579330d55f73bb7851163df917b523865675ff8 /hosts/workstation | |
| parent | d00e447ef64901db90faac1ec81a9b35fb3b6683 (diff) | |
workstation: add data disk
Diffstat (limited to 'hosts/workstation')
| -rw-r--r-- | hosts/workstation/hardware.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hosts/workstation/hardware.nix b/hosts/workstation/hardware.nix index d047d2b..d32bde5 100644 --- a/hosts/workstation/hardware.nix +++ b/hosts/workstation/hardware.nix @@ -57,6 +57,15 @@ ]; }; + fileSystems."/mnt/data" = { + device = "/dev/disk/by-uuid/303cec14-b66c-49af-8441-f2e7326ee8ad"; + fsType = "btrfs"; + options = [ + "users" + "nofail" + ]; + }; + swapDevices = [ ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking |