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;
|