This commit is contained in:
암냥 2026-07-05 13:31:18 +09:00
commit e6b0f38caa
No known key found for this signature in database
32 changed files with 44 additions and 88 deletions

View file

@ -0,0 +1,26 @@
{ pkgs, ... }:
{
virtualisation.libvirtd = {
enable = true;
dbus.enable = true;
};
users.groups.libvirtd.members = [ "imnyang" ];
services.cockpit = {
enable = true;
plugins = with pkgs; [
cockpit-machines
cockpit-files
cockpit-podman
];
openFirewall = true;
allowed-origins = [ "*" ];
};
environment.systemPackages = with pkgs; [
libvirt-dbus
virt-manager
virt-viewer
];
}