nixos-config/home-manager/modules/eww/default.nix

36 lines
702 B
Nix
Raw Normal View History

2023-07-05 16:59:16 +02:00
{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.eboskma.programs.eww;
in
{
options.eboskma.programs.eww = {
enable = mkEnableOption "eww";
package = mkPackageOption pkgs "eww" { };
};
config = mkIf cfg.enable {
programs.eww = {
enable = true;
configDir = ./config;
package = cfg.package;
};
systemd.user.services.eww-daemon = {
Unit = {
Description = "eww";
};
Service = {
ExecStart = "${cfg.package}/bin/eww --no-daemonize daemon";
Environment.PATH = makeBinPath [ pkgs.ha-now-playing pkgs.jaq pkgs.pamedia ];
};
Install = {
WantedBy = [ "default.target" ];
};
};
};
}