stylix: apply stylix.iconTheme option rename to all sub-options (#1744)
Link: https://github.com/nix-community/stylix/pull/1744
Fixes: 1021b7d732 ("stylix: simplify API by renaming stylix.iconTheme option to stylix.icons")
Reviewed-by: awwpotato <awwpotato@voidq.com>
Tested-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
parent
37673b1de0
commit
fbe1dab778
1 changed files with 41 additions and 0 deletions
|
|
@ -5,11 +5,52 @@
|
|||
from = [
|
||||
"stylix"
|
||||
"iconTheme"
|
||||
"dark"
|
||||
];
|
||||
sinceRelease = 2511;
|
||||
to = [
|
||||
"stylix"
|
||||
"icons"
|
||||
"dark"
|
||||
];
|
||||
})
|
||||
(lib.mkRenamedOptionModuleWith {
|
||||
from = [
|
||||
"stylix"
|
||||
"iconTheme"
|
||||
"enable"
|
||||
];
|
||||
sinceRelease = 2511;
|
||||
to = [
|
||||
"stylix"
|
||||
"icons"
|
||||
"enable"
|
||||
];
|
||||
})
|
||||
(lib.mkRenamedOptionModuleWith {
|
||||
from = [
|
||||
"stylix"
|
||||
"iconTheme"
|
||||
"light"
|
||||
];
|
||||
sinceRelease = 2511;
|
||||
to = [
|
||||
"stylix"
|
||||
"icons"
|
||||
"light"
|
||||
];
|
||||
})
|
||||
(lib.mkRenamedOptionModuleWith {
|
||||
from = [
|
||||
"stylix"
|
||||
"iconTheme"
|
||||
"package"
|
||||
];
|
||||
sinceRelease = 2511;
|
||||
to = [
|
||||
"stylix"
|
||||
"icons"
|
||||
"package"
|
||||
];
|
||||
})
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue