1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/modules/programs/script-directory.nix
Austin Horstman 86402a17b6 treewide: flatten single file modules
Some files don't need nesting and can be root level again to reduce
conflicts with other PRs.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-23 16:20:26 -05:00

37 lines
864 B
Nix

{
config,
pkgs,
lib,
...
}:
let
cfg = config.programs.script-directory;
in
{
meta.maintainers = [ lib.hm.maintainers.janik ];
options.programs.script-directory = {
enable = lib.mkEnableOption "script-directory";
package = lib.mkPackageOption pkgs "script-directory" { };
settings = lib.mkOption {
default = { };
type = lib.types.attrsOf lib.types.str;
example = lib.literalExpression ''
{
SD_ROOT = "''${config.home.homeDirectory}/.sd";
SD_EDITOR = "nvim";
SD_CAT = "lolcat";
}
'';
description = "script-directory config, for options take a look at the [documentation](https://github.com/ianthehenry/sd#options)";
};
};
config = lib.mkIf cfg.enable {
home = {
packages = [ cfg.package ];
sessionVariables = cfg.settings;
};
};
}