HM: virtualization module

This commit is contained in:
Filippo Berto 2024-03-15 15:47:41 +01:00
parent e68051e845
commit 6c0c1bfe7e
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
3 changed files with 9 additions and 6 deletions

View file

@ -39,8 +39,6 @@
tdesktop
thunderbird
transmission-gtk
virt-manager
virt-viewer
# wineFull
wireguard-tools
xournalpp
@ -48,7 +46,6 @@
;
inherit (pkgs.gnome)
# geary
# gnome-boxes
# gnome-calendar
# gnome-sound-recorder
# seahorse
@ -144,6 +141,7 @@
# ../../modules/hm/twmn.nix
../../modules/hm/update_background.nix
../../modules/hm/vim.nix
../../modules/hm/virtualization.nix
../../modules/hm/webapp.nix
../../modules/hm/xresources.nix
../../modules/hm/yazi.nix

View file

@ -38,8 +38,6 @@
tdesktop
thunderbird
transmission-gtk
virt-manager
virt-viewer
# wineFull
wireguard-tools
xournalpp
@ -49,7 +47,6 @@
eog
file-roller
# geary
# gnome-boxes
# gnome-calendar
gnome-font-viewer
gnome-screenshot
@ -133,6 +130,7 @@
# ../../modules/hm/twmn.nix
../../modules/hm/update_background.nix
../../modules/hm/vim.nix
../../modules/hm/virtualization.nix
../../modules/hm/webapp.nix
../../modules/hm/wl_update_background.nix
../../modules/hm/xresources.nix

View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
home.packages = [
pkgs.remmina
pkgs.virt-manager
pkgs.virt-viewer
];
}