mv virt hm config
This commit is contained in:
parent
ca3c77768d
commit
f9fae2f75a
@ -27,13 +27,6 @@
|
||||
MANPAGER = "nvim +Man!";
|
||||
};
|
||||
|
||||
dconf.settings = {
|
||||
"org/virt-manager/virt-manager/connections" = {
|
||||
autoconnect = [ "qemu:///system" ];
|
||||
uris = [ "qemu:///system" ];
|
||||
};
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
|
||||
@ -5,6 +5,7 @@
|
||||
./lf
|
||||
./notif
|
||||
./terminal
|
||||
./virt
|
||||
./wm/hyprland.nix
|
||||
];
|
||||
}
|
||||
|
||||
6
modules/home-manager/virt/default.nix
Normal file
6
modules/home-manager/virt/default.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./qemu.nix
|
||||
];
|
||||
}
|
||||
14
modules/home-manager/virt/qemu.nix
Normal file
14
modules/home-manager/virt/qemu.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user