From 96f1c6854be0a1bdc6a9f7146225714e54e70214 Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Sun, 2 Mar 2025 14:37:42 +0300 Subject: [PATCH] feat: test overlay and 'base' role --- hosts/NixOS-VM/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/NixOS-VM/default.nix b/hosts/NixOS-VM/default.nix index 77a74d1..79664ef 100644 --- a/hosts/NixOS-VM/default.nix +++ b/hosts/NixOS-VM/default.nix @@ -9,6 +9,8 @@ "${modulesPath}/virtualisation/qemu-vm.nix" ]; + ataraxia.defaults.role = "base"; + virtualisation.memorySize = 4096; virtualisation.cores = 4; virtualisation.resolution.x = 1920; @@ -30,5 +32,10 @@ boot.zfs.forceImportRoot = false; networking.hostId = "84977205"; + environment.systemPackages = with pkgs; [ + # test overlay + sing-box + ]; + system.stateVersion = "24.11"; }