nixos/modules/shell/nix/nix-tree.nix
2024-09-01 12:15:52 +04:00

14 lines
280 B
Nix

{ inputs, options, config, lib, pkgs, ...}:
let cfg = config.modules.shell.nix.tree;
in
{
options.modules.shell.nix.tree = {
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
nix-tree
];
};
}