From fdfffb1cbb57306c2cd4f692634134991f1d44c6 Mon Sep 17 00:00:00 2001 From: Frantisek Bohacek Date: Sun, 24 Sep 2023 09:05:01 +0200 Subject: [PATCH] feat: bind shared documents on desktop --- hosts/desktop/hardware-configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/desktop/hardware-configuration.nix b/hosts/desktop/hardware-configuration.nix index 1c3861c..1aa5e3c 100644 --- a/hosts/desktop/hardware-configuration.nix +++ b/hosts/desktop/hardware-configuration.nix @@ -29,6 +29,12 @@ fsType = "vfat"; }; + fileSystems."/home/ruther/doc" = + { device = "/data/Shared/Documents"; + fsType = "none"; + options = [ "bind" ]; + }; + swapDevices = [ { device = "/dev/disk/by-label/swap"; } ]; -- 2.48.1