move eza to system category
This commit is contained in:
parent
dd13d7381c
commit
e43ac000c8
2 changed files with 3 additions and 3 deletions
15
modules/software/system/eza.nix
Normal file
15
modules/software/system/eza.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.software.system.eza;
|
||||
in {
|
||||
options.modules.software.system.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