1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-03-01 03:25:13 +01:00
home-manager/tests/modules/programs/lsd/example-settings.nix

55 lines
1.2 KiB
Nix
Raw Permalink Normal View History

{
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";
};
};
icons = {
name = {
".trash" = "";
".cargo" = "";
};
extension = {
"go" = "";
"hs" = "";
};
filetype = {
"dir" = "📂";
"file" = "📄";
};
};
};
nmt.script = ''
assertFileExists home-files/.config/lsd/config.yaml
assertFileExists home-files/.config/lsd/colors.yaml
assertFileExists home-files/.config/lsd/icons.yaml
assertFileContent \
home-files/.config/lsd/config.yaml \
${./example-settings-expected.yaml}
assertFileContent \
home-files/.config/lsd/colors.yaml \
${./example-colors-expected.yaml}
assertFileContent \
home-files/.config/lsd/icons.yaml \
${./example-icons-expected.yaml}
'';
}