nixos-t2/nix/t2-iso-gnome.nix
2025-02-27 20:42:41 +08:00

17 lines
359 B
Nix

{ lib, modulesPath, ... }:
{
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-graphical-gnome.nix"
./common.nix
];
# Audio works better with PipeWire
services.pulseaudio.enable = lib.mkForce false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
pulse.enable = true;
alsa.enable = true;
};
}