From 32ffe54a46a701ec4ef3844e8d39b1e4637c81f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Violet=20Truchse=C3=9F?= Date: Wed, 14 Feb 2024 16:34:29 +0100 Subject: [PATCH] nas SMB share --- private | 2 +- workstation.nix | 5 +++++ x230.nix | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/private b/private index dd004d8..54e90a6 160000 --- a/private +++ b/private @@ -1 +1 @@ -Subproject commit dd004d85b59a3e2cb8bb96551cd821230550c6b8 +Subproject commit 54e90a63c75a40bfd0d824dc890b0c91e3272821 diff --git a/workstation.nix b/workstation.nix index 6706ac0..c54f89c 100644 --- a/workstation.nix +++ b/workstation.nix @@ -1,6 +1,11 @@ { config, lib, pkgs, ... }: { + + imports = [ + private/workstation.nix + ]; + fileSystems = { "/home".options = [ "compress=lzo" ]; "/etc/nixos" = { diff --git a/x230.nix b/x230.nix index bc505cb..acf69a9 100644 --- a/x230.nix +++ b/x230.nix @@ -48,4 +48,5 @@ services.logind.lidSwitch = "suspend-then-hibernate"; systemd.sleep.extraConfig = "HibernateDelaySec=1h"; # services.upower.enable = true; + fileSystems."nas".options = [ "noauto" ]; }