nixos/machines/thinkman/profiles.nix
2023-02-15 20:56:33 +01:00

16 lines
297 B
Nix

# enabled profiles
{ config, lib, ... }:
let
secrets = config.sops.secrets;
in
{
my.profiles = {
"3d-design".enable = true;
android.enable = true;
clean.enable = true;
latex.enable = true;
powersave.enable = true;
printing.enable = true;
sync.enable = true;
};
}