From 99f708e59006fbf01ca940841db3aad103938941 Mon Sep 17 00:00:00 2001 From: Jakob Lechner Date: Wed, 17 Sep 2025 17:15:37 +0200 Subject: [PATCH] Attempt to use bind mount for rootfs --- hosts/vm/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/vm/configuration.nix b/hosts/vm/configuration.nix index c3f8cb6..5b875bf 100644 --- a/hosts/vm/configuration.nix +++ b/hosts/vm/configuration.nix @@ -16,8 +16,8 @@ services.getty.autologinUser = "root"; fileSystems."/" = { - fsType = "tmpfs"; - options = [ "mode=0755,noauto" ]; + options = [ "rbind" ]; + device = "/"; }; system.stateVersion = "25.05";