nixos/profiles/clean/default.nix
2025-09-21 18:40:36 +02:00

23 lines
312 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.profiles.clean;
in
{
options.my.profiles.clean = {
enable = lib.mkEnableOption "clean profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
baobab
dupeguru
jdupes
kondo
];
};
}