nixos/machines/thinkman/profiles.nix

16 lines
268 B
Nix
Raw Normal View History

2023-01-22 17:18:37 +01:00
# enabled profiles
{ config, lib, ... }:
let
secrets = config.sops.secrets;
in
{
my.profiles = {
2023-02-13 21:32:15 +01:00
"3d-design".enable = true;
2023-01-22 17:18:37 +01:00
android.enable = true;
2023-02-13 21:28:55 +01:00
clean.enable = true;
2023-02-13 21:24:21 +01:00
latex.enable = true;
2023-01-23 22:56:30 +01:00
printing.enable = true;
2023-02-15 20:51:39 +01:00
sync.enable = true;
2023-01-22 17:18:37 +01:00
};
}