diff options
| author | Skullheadx <admonty1@protonmail.com> | 2026-06-04 00:03:48 -0400 |
|---|---|---|
| committer | Skullheadx <admonty1@protonmail.com> | 2026-06-04 00:03:48 -0400 |
| commit | 7e911b9d9e1eb16bba8ea914cd7598a428e59792 (patch) | |
| tree | 9f8d2ee826199ff999c1bc45146634372fa11481 | |
| parent | nfs client side (diff) | |
| download | nixos-7e911b9d9e1eb16bba8ea914cd7598a428e59792.tar.gz nixos-7e911b9d9e1eb16bba8ea914cd7598a428e59792.tar.bz2 nixos-7e911b9d9e1eb16bba8ea914cd7598a428e59792.zip | |
automount data hdd
Diffstat (limited to '')
| -rw-r--r-- | hosts/icon/configuration.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hosts/icon/configuration.nix b/hosts/icon/configuration.nix index 06d7350..f15fbf2 100644 --- a/hosts/icon/configuration.nix +++ b/hosts/icon/configuration.nix @@ -148,7 +148,11 @@ ''; }; }; - + fileSystems."/srv/data" = { + device = "/dev/disk/by-uuid/9014f510-b08e-488f-8c43-20a4ac7f15cc"; + fsType = "ext4"; + options = ["defaults" "nofail"]; + }; networking.hostName = "icon"; # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. |
