mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
workflows/a-happy-gnome: reformat
This commit is contained in:
parent
65f6e90d6c
commit
0cb9d89b03
@ -115,44 +115,42 @@ in
|
||||
# Bring all of the dconf keyfiles in there.
|
||||
programs.dconf = {
|
||||
enable = true;
|
||||
profiles = {
|
||||
user.databases = lib.singleton {
|
||||
# Get them keyfiles.
|
||||
keyfiles = [ ./config/dconf ];
|
||||
profiles.user.databases = lib.singleton {
|
||||
# Get them keyfiles.
|
||||
keyfiles = [ ./config/dconf ];
|
||||
|
||||
settings = lib.mkMerge [
|
||||
{
|
||||
"org/gnome/desktop/search-providers" = {
|
||||
disabled = [
|
||||
"org.gnome.seahorse.Application.desktop"
|
||||
"org.gnome.Photos.desktop"
|
||||
"org.gnome.Epiphany.desktop"
|
||||
"app.drey.Dialect.desktop"
|
||||
"com.belmoussaoui.Authenticator.desktop"
|
||||
];
|
||||
};
|
||||
"org/gnome/shell" = {
|
||||
enabled-extensions = builtins.map (p: p.extensionUuid) cfg.shellExtensions;
|
||||
};
|
||||
}
|
||||
settings = lib.mkMerge [
|
||||
{
|
||||
"org/gnome/desktop/search-providers" = {
|
||||
disabled = [
|
||||
"org.gnome.seahorse.Application.desktop"
|
||||
"org.gnome.Photos.desktop"
|
||||
"org.gnome.Epiphany.desktop"
|
||||
"app.drey.Dialect.desktop"
|
||||
"com.belmoussaoui.Authenticator.desktop"
|
||||
];
|
||||
};
|
||||
"org/gnome/shell" = {
|
||||
enabled-extensions = builtins.map (p: p.extensionUuid) cfg.shellExtensions;
|
||||
};
|
||||
}
|
||||
|
||||
# Disable all of the messenger's notification (only the annoying
|
||||
# ones).
|
||||
(lib.listToAttrs
|
||||
(builtins.map
|
||||
(app:
|
||||
lib.nameValuePair
|
||||
"org/gnome/desktop/notifications/application/${app}"
|
||||
{ show-banners = false; })
|
||||
[
|
||||
"re-sonny-tangram"
|
||||
"org-gnome-polari"
|
||||
"io-github-hexchat"
|
||||
"org-gnome-evolution-alarm-notify"
|
||||
"thunderbird"
|
||||
]))
|
||||
];
|
||||
};
|
||||
# Disable all of the messenger's notification (only the annoying
|
||||
# ones).
|
||||
(lib.listToAttrs
|
||||
(builtins.map
|
||||
(app:
|
||||
lib.nameValuePair
|
||||
"org/gnome/desktop/notifications/application/${app}"
|
||||
{ show-banners = false; })
|
||||
[
|
||||
"re-sonny-tangram"
|
||||
"org-gnome-polari"
|
||||
"io-github-hexchat"
|
||||
"org-gnome-evolution-alarm-notify"
|
||||
"thunderbird"
|
||||
]))
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user