10 lines
131 B
Nix
10 lines
131 B
Nix
|
{ config, lib, ... }:
|
||
|
let
|
||
|
cfg = config.profile.nnn;
|
||
|
in
|
||
|
{
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
programs.nnn.enable = true;
|
||
|
};
|
||
|
}
|