Skip to content

Commit

Permalink
hm/desktop-app: fix zotero icon and virt-manager uris
Browse files Browse the repository at this point in the history
  • Loading branch information
linyinfeng committed Oct 10, 2023
1 parent 8e06880 commit 646bd1a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions home-manager/profiles/desktop-applications/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,17 @@ in {
dconf.settings = {
"org/gnome/shell" = {
favorite-apps = [
"zotero-${pkgs.zotero.version}.desktop"
"zotero.desktop"
];
};
"org/virt-manager/virt-manager/connections" = {
uris = ["qemu+ssh://[email protected]/system"];
autoconnect = [
"qemu:///system"
];
uris = [
"qemu:///system"
"qemu+ssh://[email protected]/system"
];
};
};

Expand Down

0 comments on commit 646bd1a

Please sign in to comment.