2019-03-17 22:37:21 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.lsd;
|
|
|
|
|
2021-03-08 05:20:00 +01:00
|
|
|
yamlFormat = pkgs.formats.yaml { };
|
|
|
|
|
2019-03-17 22:37:21 +01:00
|
|
|
aliases = {
|
|
|
|
ls = "${pkgs.lsd}/bin/lsd";
|
2021-03-08 05:20:00 +01:00
|
|
|
ll = "${pkgs.lsd}/bin/lsd -l";
|
|
|
|
la = "${pkgs.lsd}/bin/lsd -a";
|
|
|
|
lt = "${pkgs.lsd}/bin/lsd --tree";
|
|
|
|
lla = "${pkgs.lsd}/bin/lsd -la";
|
2019-03-17 22:37:21 +01:00
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2019-03-17 22:37:21 +01:00
|
|
|
meta.maintainers = [ maintainers.marsam ];
|
|
|
|
|
|
|
|
options.programs.lsd = {
|
|
|
|
enable = mkEnableOption "lsd";
|
|
|
|
|
|
|
|
enableAliases = mkOption {
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether to enable recommended lsd aliases.
|
|
|
|
'';
|
|
|
|
};
|
2021-03-08 05:20:00 +01:00
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = yamlFormat.type;
|
|
|
|
default = { };
|
|
|
|
example = {
|
|
|
|
date = "relative";
|
|
|
|
ignore-globs = [ ".git" ".hg" ];
|
|
|
|
};
|
|
|
|
description = ''
|
|
|
|
Configuration written to
|
|
|
|
<filename>~/.config/lsd/config.yaml</filename>. See
|
|
|
|
<link xlink:href="https://github.com/Peltoche/lsd#config-file-content"/>
|
|
|
|
for supported values.
|
|
|
|
'';
|
|
|
|
};
|
2019-03-17 22:37:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ pkgs.lsd ];
|
|
|
|
|
|
|
|
programs.bash.shellAliases = mkIf cfg.enableAliases aliases;
|
|
|
|
|
|
|
|
programs.zsh.shellAliases = mkIf cfg.enableAliases aliases;
|
2020-01-06 07:09:51 +01:00
|
|
|
|
|
|
|
programs.fish.shellAliases = mkIf cfg.enableAliases aliases;
|
2021-03-08 05:20:00 +01:00
|
|
|
|
|
|
|
xdg.configFile."lsd/config.yaml" = mkIf (cfg.settings != { }) {
|
|
|
|
source = yamlFormat.generate "lsd-config" cfg.settings;
|
|
|
|
};
|
2019-03-17 22:37:21 +01:00
|
|
|
};
|
|
|
|
}
|