parent
d7830d0542
commit
c559542f0a
|
@ -221,10 +221,9 @@ in {
|
||||||
|
|
||||||
config = mkIf cfg.enable (let
|
config = mkIf cfg.enable (let
|
||||||
gtkIni = optionalAttrs (cfg.font != null) {
|
gtkIni = optionalAttrs (cfg.font != null) {
|
||||||
gtk-font-name = let
|
gtk-font-name =
|
||||||
fontSize =
|
let fontSize = if cfg.font.size != null then cfg.font.size else 10;
|
||||||
optionalString (cfg.font.size != null) " ${toString cfg.font.size}";
|
in "${cfg.font.name} ${toString fontSize}";
|
||||||
in "${cfg.font.name}" + fontSize;
|
|
||||||
} // optionalAttrs (cfg.theme != null) { gtk-theme-name = cfg.theme.name; }
|
} // optionalAttrs (cfg.theme != null) { gtk-theme-name = cfg.theme.name; }
|
||||||
// optionalAttrs (cfg.iconTheme != null) {
|
// optionalAttrs (cfg.iconTheme != null) {
|
||||||
gtk-icon-theme-name = cfg.iconTheme.name;
|
gtk-icon-theme-name = cfg.iconTheme.name;
|
||||||
|
@ -245,10 +244,9 @@ in {
|
||||||
'' + cfg4.extraCss;
|
'' + cfg4.extraCss;
|
||||||
|
|
||||||
dconfIni = optionalAttrs (cfg.font != null) {
|
dconfIni = optionalAttrs (cfg.font != null) {
|
||||||
font-name = let
|
font-name =
|
||||||
fontSize =
|
let fontSize = if cfg.font.size != null then cfg.font.size else 10;
|
||||||
optionalString (cfg.font.size != null) " ${toString cfg.font.size}";
|
in "${cfg.font.name} ${toString fontSize}";
|
||||||
in "${cfg.font.name}" + fontSize;
|
|
||||||
} // optionalAttrs (cfg.theme != null) { gtk-theme = cfg.theme.name; }
|
} // optionalAttrs (cfg.theme != null) { gtk-theme = cfg.theme.name; }
|
||||||
// optionalAttrs (cfg.iconTheme != null) {
|
// optionalAttrs (cfg.iconTheme != null) {
|
||||||
icon-theme = cfg.iconTheme.name;
|
icon-theme = cfg.iconTheme.name;
|
||||||
|
|
Loading…
Reference in a new issue