aboutsummaryrefslogtreecommitdiff
path: root/hosts/nixos/audio.nix
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-06-24 01:20:42 +0200
committerschererleander <leander@schererleander.de>2025-06-24 01:20:42 +0200
commit38f45aae3fc574d97784bc9f178e8c385156318f (patch)
treee8b90cea2f6929ff93ca29cbf464f63079f3cabd /hosts/nixos/audio.nix
parent32e134b13c0ef1ec3d920b1fb3681d8ca81c8bdf (diff)
reinstall nixos on desktop
Diffstat (limited to 'hosts/nixos/audio.nix')
-rw-r--r--hosts/nixos/audio.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/hosts/nixos/audio.nix b/hosts/nixos/audio.nix
deleted file mode 100644
index e64e969..0000000
--- a/hosts/nixos/audio.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ config, pkgs, lib, ... }:
-
-{
- options.audio.enable = lib.mkEnableOption "Enable audio with pipewire";
- config = lib.mkIf config.audio.enable {
- security.rtkit.enable = true;
- services.pipewire = {
- enable = true;
- alsa.enable = true;
- alsa.support32Bit = true;
- pulse.enable = true;
- };
- };
-} \ No newline at end of file