1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-03 05:23:32 +02:00
home-manager/tests/modules/programs/lsd/example-settings.nix
Avimitin 835465e8ba
lsd: allow user to configure colors
Signed-off-by: Avimitin <dev@avimit.in>
2023-09-24 09:47:00 +02:00

45 lines
1010 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.lsd = {
enable = true;
enableAliases = false;
settings = {
date = "relative";
blocks = [ "date" "size" "name" ];
layout = "oneline";
sorting.dir-grouping = "first";
ignore-globs = [ ".git" ".hg" ".bsp" ];
};
colors = {
date = {
day-old = "green";
older = "dark_green";
};
size = {
none = "grey";
small = "grey";
medium = "yellow";
large = "dark_yellow";
};
};
};
test.stubs.lsd = { };
nmt.script = ''
assertFileExists home-files/.config/lsd/config.yaml
assertFileExists home-files/.config/lsd/colors.yaml
assertFileContent \
home-files/.config/lsd/config.yaml \
${./example-settings-expected.yaml}
assertFileContent \
home-files/.config/lsd/colors.yaml \
${./example-colors-expected.yaml}
'';
};
}