41 lines
746 B
Nix
41 lines
746 B
Nix
{
|
|
options,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (inputs.nix-colors.colorschemes.${builtins.toString config.colorscheme.name})
|
|
palette
|
|
;
|
|
in
|
|
{
|
|
home.packages = with pkgs; [ wlogout ];
|
|
|
|
# xdg.configFile."wlogout/style.css".text = ''
|
|
# * {
|
|
# all: unset;
|
|
# font-family: JetBrains Mono Nerd Font;
|
|
# }
|
|
|
|
# window {
|
|
# background-color: #${palette.base00};
|
|
# }
|
|
|
|
# button {
|
|
# color: #${palette.base01};
|
|
# font-size: 64px;
|
|
# background-color: rgba(0,0,0,0);
|
|
# outline-style: none;
|
|
# margin: 5px;
|
|
# }
|
|
|
|
# button:focus, button:active, button:hover {
|
|
# color: #${palette.base0D};
|
|
# transition: ease 0.4s;
|
|
# }
|
|
# '';
|
|
}
|