mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
39 lines
814 B
Nix
39 lines
814 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.eww;
|
|
|
|
in {
|
|
meta.maintainers = [ hm.maintainers.mainrs ];
|
|
|
|
options.programs.eww = {
|
|
enable = mkEnableOption "eww";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.eww;
|
|
defaultText = literalExpression "pkgs.eww";
|
|
example = literalExpression "pkgs.eww";
|
|
description = ''
|
|
The eww package to install.
|
|
'';
|
|
};
|
|
|
|
configDir = mkOption {
|
|
type = types.path;
|
|
example = literalExpression "./eww-config-dir";
|
|
description = ''
|
|
The directory that gets symlinked to
|
|
<filename>$XDG_CONFIG_HOME/eww</filename>.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ cfg.package ];
|
|
xdg.configFile."eww".source = cfg.configDir;
|
|
};
|
|
}
|