diff --git a/nixosConfigurations/astora/default.nix b/nixosConfigurations/astora/default.nix index ce0cf4e..6878764 100644 --- a/nixosConfigurations/astora/default.nix +++ b/nixosConfigurations/astora/default.nix @@ -157,5 +157,6 @@ dockerCompat = true; defaultNetwork.settings.dns_enabled = true; }; + libvirtd.enable = true; }; } diff --git a/nixosConfigurations/astora/users.nix b/nixosConfigurations/astora/users.nix index 59e05ed..fad01c4 100644 --- a/nixosConfigurations/astora/users.nix +++ b/nixosConfigurations/astora/users.nix @@ -4,7 +4,7 @@ users.users.l-nafaryus = { isNormalUser = true; description = "L-Nafaryus"; - extraGroups = [ "networkmanager" "wheel" "audio" ]; + extraGroups = [ "networkmanager" "wheel" "audio" "libvirtd" ]; group = "users"; uid = 1000; initialPassword = "nixos"; @@ -90,6 +90,8 @@ liberation_ttf steamtinkerlaunch + + ]; xdg = { @@ -97,6 +99,13 @@ mime.enable = true; }; + dconf.settings = { + "org/virt-manager/virt-manager/connections" = { + autoconnect = [ "qemu:///system" ]; + uris = [ "qemu:///system" ]; + }; + }; + home.file = { ".config/gnupg/gpg-agent.conf".text = '' default-cache-ttl 3600 @@ -132,6 +141,10 @@ }; systemd.user.extraConfig = "DefaultLimitNOFILE=524288"; + + programs.virt-manager.enable = true; + + # Services services.spoofdpi.enable = true;