diff options
| author | adikro <adikro@disroot.org> | 2025-12-24 16:21:00 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2025-12-24 16:21:00 +0100 |
| commit | 6aaa5993e4c1cfb205ed555d958702f9bba1770d (patch) | |
| tree | 3af8cf20967cf10542edd2e51232b1da70002fde /sys/core/audio.nix | |
| parent | 2ceabfd1d1dc03ca895e960048b73a82e29e45e8 (diff) | |
a bunch of changes, renames sys to os and refactored some of the logic
Diffstat (limited to 'sys/core/audio.nix')
| -rw-r--r-- | sys/core/audio.nix | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/sys/core/audio.nix b/sys/core/audio.nix deleted file mode 100644 index 234b6bd..0000000 --- a/sys/core/audio.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ config, lib, pkgs, username, ... }: -let - cfg = config.sys.core.audio; -in -{ - options.sys.core.audio.enable = lib.mkEnableOption "audio support"; - config = lib.mkIf cfg.enable { - services = { - pipewire = { - enable = true; - audio.enable = true; - pulse.enable = true; - alsa.enable = true; - alsa.support32Bit = true; - jack.enable = true; - wireplumber.enable = true; - }; - playerctld.enable = true; - spotifyd.enable = true; - }; - - security.rtkit.enable = true; - hardware.enableAllFirmware = true; - - environment.systemPackages = with pkgs; [ - helvum - alsa-utils - ]; - - home-manager.users.${username}.hm.soft.easyeffects.enable = true; - }; -} |
