mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
gtk: remove deprecated options
This commit is contained in:
parent
e75b68e391
commit
7dd09cecda
2 changed files with 0 additions and 44 deletions
|
@ -180,21 +180,4 @@ in
|
|||
xdg.configFile."gtk-3.0/gtk.css".text = cfg3.extraCss;
|
||||
}
|
||||
);
|
||||
|
||||
imports =
|
||||
let
|
||||
name = n: [ "gtk" n ];
|
||||
in [
|
||||
(mkChangedOptionModule (name "fontName") (name "font") (
|
||||
config: { name = getAttrFromPath (name "fontName") config; }
|
||||
))
|
||||
|
||||
(mkChangedOptionModule (name "themeName") (name "theme") (
|
||||
config: { name = getAttrFromPath (name "themeName") config; }
|
||||
))
|
||||
|
||||
(mkChangedOptionModule (name "iconThemeName") (name "iconTheme") (
|
||||
config: { name = getAttrFromPath (name "iconThemeName") config; }
|
||||
))
|
||||
];
|
||||
}
|
||||
|
|
|
@ -451,33 +451,6 @@ in
|
|||
'';
|
||||
}
|
||||
|
||||
{
|
||||
time = "2017-11-23T00:31:12+00:00";
|
||||
condition =
|
||||
config.gtk.fontName != "_mkMergedOptionModule"
|
||||
|| config.gtk.themeName != "_mkMergedOptionModule"
|
||||
|| config.gtk.iconThemeName != "_mkMergedOptionModule";
|
||||
message = ''
|
||||
The options
|
||||
|
||||
gtk.fontName, gtk.themeName, and gtk.iconThemeName
|
||||
|
||||
are deprecated and will be removed on December 23, 2017.
|
||||
|
||||
Please use
|
||||
|
||||
gtk.font.name, gtk.theme.name, and gtk.iconTheme.name
|
||||
|
||||
instead. You can find information about these in the manual
|
||||
page.
|
||||
|
||||
This change was made to introduce the options
|
||||
'gtk.font.package', 'gtk.theme.package', and
|
||||
'gtk.iconTheme.package', which allow you to specify the
|
||||
package that provides the font or theme.
|
||||
'';
|
||||
}
|
||||
|
||||
{
|
||||
time = "2017-11-26T21:57:23+00:00";
|
||||
message = ''
|
||||
|
|
Loading…
Reference in a new issue