mirror of
https://github.com/danth/stylix
synced 2025-02-17 05:48:36 +00:00
15 lines
414 B
Nix
15 lines
414 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
{
|
|
options.stylix.targets.gnome.enable =
|
|
config.lib.stylix.mkEnableTarget "GNOME" true;
|
|
|
|
config.home-manager.sharedModules =
|
|
lib.mkIf config.stylix.targets.gnome.enable [{
|
|
dconf.settings."org/gnome/desktop/background" = {
|
|
color-shading-type = "solid";
|
|
picture-options = "zoom";
|
|
picture-uri = "file://${config.stylix.image}";
|
|
};
|
|
}];
|
|
}
|