profile/clean: init from legacy

This commit is contained in:
Felix Buehler 2023-02-13 21:28:55 +01:00
parent debb5f1706
commit 8884bb792b
5 changed files with 21 additions and 12 deletions

View file

@ -0,0 +1,19 @@
{ 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
findimagedupes
jdupes
kondo
];
};
}