configure lsd
This commit is contained in:
parent
0b4b3fbdfd
commit
30fa87189b
1 changed files with 20 additions and 1 deletions
|
@ -1,8 +1,27 @@
|
|||
_: {
|
||||
{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";
|
||||
programs.lsd = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
settings = {
|
||||
color = {
|
||||
when = "always";
|
||||
theme = "custom";
|
||||
};
|
||||
icons = {
|
||||
when = "always";
|
||||
theme = "fancy";
|
||||
};
|
||||
sorting = {
|
||||
dir-grouping = "first";
|
||||
};
|
||||
date = "relative";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue