diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-03-15 08:35:41 +0100 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-03-15 08:36:44 +0100 |
| commit | e58120d22dcb36e6c12388d57835814e81ae5743 (patch) | |
| tree | b75983f7426ac85298c969d997f1f99f6d7dc657 | |
| parent | 177127162d6b1d52dc500a969e8222d12f81c957 (diff) | |
enable sound
| -rw-r--r-- | configuration.nix | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix index 2d4365e..eea66be 100644 --- a/configuration.nix +++ b/configuration.nix @@ -8,7 +8,7 @@ }; virtualisation.docker.enable = true; - + boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; @@ -19,10 +19,18 @@ services.xserver.enable = true; services.xserver.displayManager.startx.enable = true; services.xserver.libinput.enable = true; - + sound.enable = true; - hardware.pulseaudio.enable = true; + security.rtkit.enable = true; + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + }; + hardware.bluetooth.enable = true; + services.blueman.enable = true; programs.slock.enable = true; |
