nixos/profiles/clean/default.nix
2023-11-13 20:22:32 +01:00

18 lines
310 B
Nix

{ config, lib, pkgs, ... }:
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
];
};
}