configuration.nix/home/programs/lsd.nix

29 lines
639 B
Nix
Raw Normal View History

2023-09-09 21:35:35 +05:30
{pkgs, ...}: let
dracula-lsd = pkgs.fetchFromGitHub {
owner = "dracula";
repo = "lsd";
rev = "75f3305a2bba4dacac82b143a15d278daee28232";
hash = "sha256-ZNyNYJEffxxU7K/7JOv+VRD3JbhW42kvmWk7pLu1vA8=";
};
in {
xdg.configFile."lsd/themes/colors.yaml".source = "${dracula-lsd}/dracula.yaml";
2023-09-09 21:10:52 +05:30
programs.lsd = {
enable = true;
enableAliases = true;
settings = {
2023-09-09 21:35:35 +05:30
color = {
when = "always";
theme = "custom";
};
icons = {
when = "always";
theme = "fancy";
};
sorting = {
dir-grouping = "first";
};
2023-09-09 21:10:52 +05:30
date = "relative";
};
};
}