mirror of
https://github.com/t2linux/nixos-t2-iso.git
synced 2026-08-16 05:18:14 -07:00
18 lines
359 B
Nix
18 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;
|
|
};
|
|
}
|