nixos/machines/thinkman/profiles.nix

13 lines
188 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 = {
android.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-01-22 17:18:37 +01:00
};
}