changes 08-09-25

This commit is contained in:
2025-08-09 23:20:12 -04:00
parent 4e44a1618b
commit 09302c1562
22 changed files with 145 additions and 79 deletions

View File

@@ -16,6 +16,7 @@
firewall = {
enable = true;
allowedTCPPorts = [ 443 8080 ];
trustedInterfaces = [ "vnet9" "virbr0" "enp0s2" ];
};
};
};

View File

@@ -22,6 +22,7 @@ in {
#snes9x-gtk
#cust-openrct2
mgba
shadps4
cust-prismlauncher
];
};

View File

@@ -1,4 +1,4 @@
{ lib, config, username, ... }: {
{ lib, config, username, pkgs, ... }: {
options = {
movOpts.softwareCfg.virtConfig.enable =
lib.mkEnableOption "enables virtualization";
@@ -6,5 +6,9 @@
config = lib.mkIf config.movOpts.softwareCfg.virtConfig.enable {
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
environment.systemPackages = with pkgs; [
spice-gtk
usbredir
];
};
}