feat: enable lsd as an ls replacement
This commit is contained in:
parent
737c8a2d1c
commit
69f1b8627a
4 changed files with 11 additions and 2 deletions
|
@ -22,8 +22,8 @@ in {
|
||||||
];
|
];
|
||||||
|
|
||||||
fonts.fonts = with pkgs; [
|
fonts.fonts = with pkgs; [
|
||||||
|
(nerdfonts.override {fonts = ["Go-Mono"];})
|
||||||
dejavu_fonts
|
dejavu_fonts
|
||||||
go-font
|
|
||||||
noto-fonts
|
noto-fonts
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@ _: {
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./gpg.nix
|
./gpg.nix
|
||||||
|
./lsd.nix
|
||||||
./mako.nix
|
./mako.nix
|
||||||
./newsboat.nix
|
./newsboat.nix
|
||||||
./nvim.nix
|
./nvim.nix
|
||||||
|
|
8
programs/lsd.nix
Normal file
8
programs/lsd.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
_: {
|
||||||
|
home-manager.users.buffet = {
|
||||||
|
programs.lsd = {
|
||||||
|
enable = true;
|
||||||
|
enableAliases = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
light = true;
|
light = true;
|
||||||
|
|
||||||
font = {
|
font = {
|
||||||
family = "GoMono";
|
family = "GoMono Nerd Font";
|
||||||
size = 8;
|
size = 8;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue