mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-09 10:16:55 +00:00
Instead of having to manually stub packages that should not be downloaded we instead automatically stub all packages (except a small list of whitelisted ones). Tests can re-introduce the real package by using the `realPkgs` module argument.
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{
|
|
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}
|
|
'';
|
|
}
|