mv virt hm config

This commit is contained in:
smayzy 2025-08-08 19:05:01 +02:00
parent ca3c77768d
commit f9fae2f75a
4 changed files with 21 additions and 7 deletions

View File

@ -27,13 +27,6 @@
MANPAGER = "nvim +Man!"; MANPAGER = "nvim +Man!";
}; };
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;

View File

@ -5,6 +5,7 @@
./lf ./lf
./notif ./notif
./terminal ./terminal
./virt
./wm/hyprland.nix ./wm/hyprland.nix
]; ];
} }

View File

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./qemu.nix
];
}

View File

@ -0,0 +1,14 @@
{ lib, smayzy, ... }:
let
inherit (lib) mkIf;
in
{
config = mkIf smayzy.virt.enable {
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
};
}