nixos-t2/nix/t2-iso-gnome.nix

18 lines
359 B
Nix
Raw Normal View History

{ lib, modulesPath, ... }:
2022-08-25 18:45:47 +03:00
{
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-graphical-gnome.nix"
./common.nix
2022-08-25 18:45:47 +03:00
];
# Audio works better with PipeWire
2025-02-27 20:31:00 +08:00
services.pulseaudio.enable = lib.mkForce false;
2022-08-25 18:45:47 +03:00
security.rtkit.enable = true;
services.pipewire = {
enable = true;
pulse.enable = true;
alsa.enable = true;
};
}