31 lines
611 B
Nix
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};
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
}
|