mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 21:01:34 +01:00
Move modules in programs/services subfolders
This commit is contained in:
parent
2ff87c8404
commit
211ca98e92
38 changed files with 0 additions and 0 deletions
13
modules/home/programs/virt-manager.nix
Normal file
13
modules/home/programs/virt-manager.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, lib, ... }@moduleArgs:
|
||||
{
|
||||
options.custom.programs.virt-manager.enable = lib.mkEnableOption "" // {
|
||||
default = moduleArgs.osConfig.programs.virt-manager.enable or false;
|
||||
};
|
||||
|
||||
config = lib.mkIf config.custom.programs.virt-manager.enable {
|
||||
dconf.settings."org/virt-manager/virt-manager/connections" = {
|
||||
autoconnect = [ "qemu:///system" ];
|
||||
uris = [ "qemu:///system" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue