Add ssh-askpass program for virt-manager
Some checks failed
Flake check / check (push) Failing after 37m5s
Update `flake.lock` / update_lockfile (push) Has been cancelled

This commit is contained in:
Pedro Rey Anca 2025-11-01 15:24:11 +01:00
parent 0c1c823afc
commit b19cdb1c5b
Signed by: peprolinbot
GPG key ID: 053EA6E00116533A

View file

@ -1,4 +1,5 @@
{pkgs, ...}: { { pkgs, ... }:
{
# Install necessary packages # Install necessary packages
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
virt-manager virt-manager
@ -9,6 +10,7 @@
win-virtio win-virtio
win-spice win-spice
adwaita-icon-theme adwaita-icon-theme
lxqt.lxqt-openssh-askpass
]; ];
# Manage the virtualisation services # Manage the virtualisation services
@ -18,7 +20,7 @@
qemu = { qemu = {
swtpm.enable = true; swtpm.enable = true;
ovmf.enable = true; ovmf.enable = true;
ovmf.packages = [pkgs.OVMFFull.fd]; ovmf.packages = [ pkgs.OVMFFull.fd ];
}; };
}; };