install eza
This commit is contained in:
parent
19ad0e1223
commit
acf7c88934
2 changed files with 18 additions and 2 deletions
|
@ -21,7 +21,7 @@
|
||||||
# compatibility
|
# compatibility
|
||||||
wineWowPackages.waylandFull winetricks
|
wineWowPackages.waylandFull winetricks
|
||||||
# misc
|
# misc
|
||||||
bat file which tree prismlauncher yt-dlp wl-screenrec
|
bat file which prismlauncher yt-dlp wl-screenrec
|
||||||
] ++ (with pkgs.my; [
|
] ++ (with pkgs.my; [
|
||||||
# none yet
|
# none yet
|
||||||
]) ++ (with pkgs.gnome; [
|
]) ++ (with pkgs.gnome; [
|
||||||
|
@ -75,8 +75,9 @@
|
||||||
distractions.discord.vesktop = true;
|
distractions.discord.vesktop = true;
|
||||||
distractions.steam.enable = true;
|
distractions.steam.enable = true;
|
||||||
# tools
|
# tools
|
||||||
tools.mpv.enable = true;
|
tools.eza.enable = true;
|
||||||
tools.gpg.enable = true;
|
tools.gpg.enable = true;
|
||||||
|
tools.mpv.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
15
modules/software/tools/eza.nix
Normal file
15
modules/software/tools/eza.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.software.tools.eza;
|
||||||
|
in {
|
||||||
|
options.modules.software.tools.eza = {
|
||||||
|
enable = mkEnableOption "Enable eza, a modern replacement for ls";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
hm.programs.eza.enable = true;
|
||||||
|
hm.programs.eza.git = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue