fix cli tools config

This commit is contained in:
Chris Kruining 2025-03-28 22:07:09 +01:00
parent 555068556f
commit 816b85e06e
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
9 changed files with 393 additions and 353 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, user, ... }:
{ config, lib, pkgs, user, ... }:
let
inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption;
@ -11,8 +11,12 @@ in
};
config = mkIf cfg.enable {
home-manager.users.${user}.programs.yazi = {
enable = true;
home-manager.users.${user} = {
packages = with pkgs; [ yazi ];
programs.yazi = {
enable = true;
};
};
};
}