mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 16:21:34 +01:00
Rename the namespace of the home-modules
This commit is contained in:
parent
06623cd93a
commit
f0df314f21
25 changed files with 74 additions and 68 deletions
|
|
@ -1,10 +1,10 @@
|
|||
{ config, lib, ... }@moduleArgs:
|
||||
{
|
||||
options.myConfig.virt-manager.enable = lib.mkEnableOption "" // {
|
||||
options.custom.programs.virt-manager.enable = lib.mkEnableOption "" // {
|
||||
default = moduleArgs.osConfig.programs.virt-manager.enable or false;
|
||||
};
|
||||
|
||||
config = lib.mkIf config.myConfig.virt-manager.enable {
|
||||
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