pointfichiers/themes/pomme.nix
GaspardCulis 8d4ec36c98 chore(flake.lock): Update flake
Should fix firefox CVE-2024-9680
2024-10-15 22:40:08 +02:00

20 lines
360 B
Nix

{pkgs, ...}: {
home.packages = [pkgs.dconf];
dconf.settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-light";
};
};
gtk = {
enable = true;
theme = {
package = pkgs.qogir-theme;
name = "qogir-dark";
};
iconTheme = {
package = pkgs.qogir-icon-theme;
name = "Qogir";
};
};
}