From a641503303dddcc79911232b38117df158fb152d Mon Sep 17 00:00:00 2001 From: Jakub Stachurski Date: Thu, 20 Nov 2025 00:43:33 +0100 Subject: Cleanup and restore of fcixt --- hosts/test_vm/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'hosts/test_vm/default.nix') diff --git a/hosts/test_vm/default.nix b/hosts/test_vm/default.nix index a627939..7d84448 100644 --- a/hosts/test_vm/default.nix +++ b/hosts/test_vm/default.nix @@ -7,7 +7,6 @@ { boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - imports = [ "${inputs.nixpkgs}/nixos/modules/virtualisation/libvirtd.nix" ]; networking.hostName = "cookie_vm"; # Define your hostname. networking.networkmanager.enable = true; @@ -24,4 +23,10 @@ graphics = true; }; }; + + fileSystems."/" = { + device = "none"; + fsType = "tmpfs"; + options = [ "defaults" "size=2G" "mode=755" ]; + }; } -- cgit v1.3.1