diff options
author | Rory& <root@rory.gay> | 2023-12-31 09:20:26 +0100 |
---|---|---|
committer | Rory& <root@rory.gay> | 2023-12-31 09:20:26 +0100 |
commit | 410dbae99a5a10d4569a0d465b117230d44ca1c0 (patch) | |
tree | e612a66c821c21fe2fbbd196a3b31ca4dfdd6f6e /modules | |
parent | Dont set dconf for Rory if dconf isnt enabled (diff) | |
download | Rory-Open-Architecture-410dbae99a5a10d4569a0d465b117230d44ca1c0.tar.xz |
Move dconf to Rory.client.nix
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/users/Rory.client.nix | 7 | ||||
-rwxr-xr-x | modules/users/Rory.nix | 7 |
2 files changed, 6 insertions, 8 deletions
diff --git a/modules/users/Rory.client.nix b/modules/users/Rory.client.nix index 36edbc1..b3ef89f 100755 --- a/modules/users/Rory.client.nix +++ b/modules/users/Rory.client.nix @@ -10,7 +10,12 @@ }; home-manager.users.Rory = { services.gnome-keyring.enable = lib.mkForce false; - + dconf.settings = { + "org/virt-manager/virt-manager/connections" = { + autoconnect = ["qemu:///system"]; + uris = ["qemu:///system"]; + }; + }; # keepassxc, maybe? systemd.user.services.keepassxc = { Unit = { diff --git a/modules/users/Rory.nix b/modules/users/Rory.nix index 5fbf2c6..ef7ea72 100755 --- a/modules/users/Rory.nix +++ b/modules/users/Rory.nix @@ -39,13 +39,6 @@ environment.shells = with pkgs; [ zsh ]; home-manager.users.Rory = { - #services.gnome-keyring.enable = true; - dconf.settings = lib.mkIf config.programs.dconf.enable { - "org/virt-manager/virt-manager/connections" = { - autoconnect = ["qemu:///system"]; - uris = ["qemu:///system"]; - }; - }; programs = { git = { enable = true; |