nixos/profiles/clean/default.nix

19 lines
310 B
Nix
Raw Permalink Normal View History

2023-02-13 21:28:55 +01:00
{ 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
];
};
}