mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
18 lines
349 B
Nix
18 lines
349 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;
|
|
nautilus.enable = true;
|
|
powersave.enable = true;
|
|
printing.enable = true;
|
|
sway.enable = true;
|
|
sync.enable = true;
|
|
};
|
|
}
|