1
Fork 0
satellite/home/features/desktop/eww/default.nix

22 lines
416 B
Nix
Raw Normal View History

{ config, ... }:
let
2023-03-12 05:24:25 +01:00
base16-eww = config.lib.stylix.colors {
template = builtins.readFile ./template.yuck;
};
2023-05-28 05:24:36 +02:00
widgets = config.satellite.dev.path "home/features/desktop/eww/widgets";
in
{
programs.eww-hyprland = {
enable = true;
autoReload = true;
extraConfig = ''
; Color scheme
(include "${base16-eww}")
; My widgets
(include "${widgets}/bar.yuck")
'';
};
}