mirror of
https://github.com/RGBCube/ThemeNix
synced 2025-07-28 08:57:46 +00:00
Fix
This commit is contained in:
parent
7fde754179
commit
c3880ff7ae
1 changed files with 7 additions and 5 deletions
12
flake.nix
12
flake.nix
|
@ -7,11 +7,13 @@
|
||||||
|
|
||||||
with0x = theme // (builtins.mapAttrs (_: value: "0x" + value) onlyColors);
|
with0x = theme // (builtins.mapAttrs (_: value: "0x" + value) onlyColors);
|
||||||
withHashtag = theme // (builtins.mapAttrs (_: value: "#" + value) onlyColors);
|
withHashtag = theme // (builtins.mapAttrs (_: value: "#" + value) onlyColors);
|
||||||
in theme // {
|
|
||||||
inherit with0x withHashtag;
|
|
||||||
|
|
||||||
tmTheme = (import ./templates/tmTheme.nix) theme;
|
themeFull = theme // {
|
||||||
adwaitaGtkcss = (import ./templates/adwaitaGtkCss.nix) theme;
|
inherit with0x withHashtag;
|
||||||
|
};
|
||||||
|
in themeFull // {
|
||||||
|
tmTheme = (import ./templates/tmTheme.nix) themeFull;
|
||||||
|
adwaitaGtkcss = (import ./templates/adwaitaGtkCss.nix) themeFull;
|
||||||
};
|
};
|
||||||
} // builtins.mapAttrs (_: self.custom) (import ./themes.nix);
|
} // builtins.mapAttrs (name: self.custom) (import ./themes.nix);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue