Files
Nomarchy/modules/home/walker.nix
Bernardo Magri 33deeb494b initial commit
2026-04-01 17:06:01 +01:00

31 lines
611 B
Nix

{ config, pkgs, ... }:
{
programs.walker = {
enable = true;
runAsService = true;
config = {
theme = "nomarchy";
ui = {
anchors = {
top = true;
};
};
};
themes."nomarchy" = {
style = ''
* {
color: #${config.colorScheme.palette.base05};
}
#window {
background-color: #${config.colorScheme.palette.base00};
}
.item.active {
background-color: #${config.colorScheme.palette.base03};
color: #${config.colorScheme.palette.base0B};
}
'';
};
};
}