From 0dcac55a0c3fcbb2d48028a4474ccecb37bb22fc Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 25 Aug 2025 19:13:31 +0900 Subject: hst/config: remove container etc field This no longer needs special treatment since it can be specified as a generic filesystem entry. Signed-off-by: Ophestra --- nixos.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'nixos.nix') diff --git a/nixos.nix b/nixos.nix index 64bc8be9..c2858e98 100644 --- a/nixos.nix +++ b/nixos.nix @@ -180,8 +180,15 @@ in (optDevBind "/dev/nvidia0") ] ++ optionals app.useCommonPaths cfg.commonPaths - ++ app.extraPaths; - auto_etc = true; + ++ app.extraPaths + ++ [ + { + type = "bind"; + dst = "/etc/"; + src = "/etc/"; + special = true; + } + ]; symlink = [ { -- cgit v1.3.1