nixos/modules/shell/nix/nix-tree.nix

15 lines
280 B
Nix
Raw Normal View History

2024-09-01 12:15:52 +04:00
{ 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
];
};
}