nixos/profiles/clean/default.nix

24 lines
318 B
Nix
Raw Normal View History

2024-07-28 21:08:02 +02:00
{
config,
lib,
pkgs,
...
}:
2023-02-13 21:28:55 +01:00
let
cfg = config.my.profiles.clean;
in
{
options.my.profiles.clean = with lib; {
enable = mkEnableOption "clean profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
baobab
dupeguru
jdupes
kondo
];
};
}