This commit is contained in:
nx2
2024-03-06 14:34:29 +01:00
parent 6e3d9237e7
commit 5e1c0866cd
3 changed files with 13 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, allowed, ... }:
{ config, lib, pkgs, allowed, secrets, ... }:
{
imports =
@@ -60,7 +60,14 @@
#hardware.pulseaudio.enable = true;
# rtkit is optional but recommended
security.rtkit.enable = true;
security = {
rtkit.enable = true;
pki.certificates = [
secrets.easyroamCa
];
};
services.pipewire = {
enable = true;
alsa.enable = true;