nixos/profiles/clean/default.nix
Felix Buehler faddcd064d
Some checks failed
/ Build Nix targets (push) Has been cancelled
profile/clean: add angrr
2025-12-11 20:24:36 +01:00

28 lines
391 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 {
services.angrr = {
enable = true;
timer.enable = true;
};
environment.systemPackages = with pkgs; [
baobab
dupeguru
jdupes
kondo
];
};
}