diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-06-09 17:40:46 +0000 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-06-09 17:40:46 +0000 |
| commit | a45c4551712c1ba5cb82eaf290f311ab0e8690e4 (patch) | |
| tree | f62b23489fb31f8ea58fef77f99619efd784eb36 /modules/services/options.nix | |
big changes
Diffstat (limited to 'modules/services/options.nix')
| -rw-r--r-- | modules/services/options.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/services/options.nix b/modules/services/options.nix new file mode 100644 index 0000000..344d37d --- /dev/null +++ b/modules/services/options.nix @@ -0,0 +1,20 @@ +{lib, ...}: let + inherit (lib) mkEnableOption mkOption types; +in { + options = { + collinux.services = { + networking = { + enable = mkEnableOption "wifi"; + wifiDaemon = mkOption { + type = types.enum ["networkmanager" "iwd"]; + }; + }; + audio = { + enable = mkEnableOption "pipewire + wireplumber"; + pulse.enable = mkEnableOption "pipewire-pulse"; + # some config to make audio work with wine (TODO for jupiter) + }; + bluetooth.enable = mkEnableOption "bluetooth"; + }; + }; +} |
