feat: enable lsd as an ls replacement

This commit is contained in:
buffet 2022-10-28 14:58:47 +00:00
parent 737c8a2d1c
commit 69f1b8627a
4 changed files with 11 additions and 2 deletions

View file

@ -22,8 +22,8 @@ in {
];
fonts.fonts = with pkgs; [
(nerdfonts.override {fonts = ["Go-Mono"];})
dejavu_fonts
go-font
noto-fonts
];

View file

@ -7,6 +7,7 @@ _: {
./firefox.nix
./git.nix
./gpg.nix
./lsd.nix
./mako.nix
./newsboat.nix
./nvim.nix

8
programs/lsd.nix Normal file
View file

@ -0,0 +1,8 @@
_: {
home-manager.users.buffet = {
programs.lsd = {
enable = true;
enableAliases = true;
};
};
}

View file

@ -2,7 +2,7 @@
light = true;
font = {
family = "GoMono";
family = "GoMono Nerd Font";
size = 8;
};