19 lines
387 B
Nix
19 lines
387 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
base16-eww = config.lib.stylix.colors {
|
|
template = builtins.readFile ./template.yuck;
|
|
};
|
|
|
|
widgets = config.satellite.dev.path "home/features/desktop/eww/widgets";
|
|
in
|
|
{
|
|
home.packages = [ pkgs.eww ];
|
|
xdg.configFile."eww/eww.yuck".text = ''
|
|
# Color scheme
|
|
(include ${base16-eww})
|
|
|
|
# My widgets
|
|
(include ${widgets}/dashboard)
|
|
'';
|
|
}
|