Refactor for wallpers, keybinds, add weeb tokyo-light theme

This commit is contained in:
Henry Sipp
2025-07-22 21:08:27 -05:00
parent e2d116c28a
commit 1fed2b5d59
14 changed files with 84 additions and 69 deletions
+9 -3
View File
@@ -1,8 +1,13 @@
{
inputs: {
config,
pkgs,
...
}: {
}:
let
palette = config.colorScheme.palette;
convert = inputs.nix-colors.lib.conversions.hexToRGBString;
backgroundRgb = "rgba(${convert ", " palette.base00}, 0.25)";
in {
home.file = {
".config/waybar/" = {
source = ../../config/waybar;
@@ -12,7 +17,8 @@
text = ''
* {
color: #${config.colorScheme.palette.base05};
background-color: #${config.colorScheme.palette.base00};
background-color: ${backgroundRgb};
}
'';
};