#2 first somewhat working iteration, there seems to be a problem with home manager still

This commit is contained in:
Christoph Hollizeck 2024-03-26 17:28:20 +01:00
parent 4a3a48af59
commit 236ff25b49
11 changed files with 118 additions and 16 deletions

View file

@ -10,7 +10,6 @@ in
};
config = mkIf cfg.enable {
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
@ -18,7 +17,7 @@ in
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32bit = true;
alsa.support32Bit = true;
pulse.enable = true;
};
};

View file

@ -0,0 +1,20 @@
{ options, config, lib, pkgs, ... }:
with lib;
with lib.wyrdgard;
let
cfg = config.wyrdgard.system.hardware.bluetooth;
in
{
options.wyrdgard.system.hardware.bluetooth = with types; {
enable = mkBoolOpt false "Whether or not to enable bluetooth";
};
config = mkIf cfg.enable {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
};
}