blob: 382919a8761209e357cbb9dc35d8e73a9ce5ba57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.nx.desktop.gnome;
enabledExtensions = [
"pop-shell@system76.com"
] ++ (if cfg.blur then [ "blur-my-shell@aunetx" ] else [ ]);
in
{
config = mkIf cfg.enable {
dconf.settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
};
"org/gnome/shell" = {
enabled-extensions = enabledExtensions;
};
};
};
}
|