summaryrefslogtreecommitdiff
path: root/hosts/test_vm
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-20 00:43:33 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-20 00:43:33 +0100
commita641503303dddcc79911232b38117df158fb152d (patch)
treea1ddd803c1eb00ec398551b84cc2673543557db6 /hosts/test_vm
parent892de67a9f64d0b0cdb023d830a019d8feec0a57 (diff)
Cleanup and restore of fcixt
Diffstat (limited to 'hosts/test_vm')
-rw-r--r--hosts/test_vm/default.nix7
1 files changed, 6 insertions, 1 deletions
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" ];
+ };
}