1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/modules/programs/lsd.nix

63 lines
1.4 KiB
Nix
Raw Normal View History

2019-03-17 22:37:21 +01:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.lsd;
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.
'';
};
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;
xdg.configFile."lsd/config.yaml" = mkIf (cfg.settings != { }) {
source = yamlFormat.generate "lsd-config" cfg.settings;
};
2019-03-17 22:37:21 +01:00
};
}