11 lines
123 B
Nix
11 lines
123 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
networking = {
|
||
|
hostName = "audio";
|
||
|
};
|
||
|
|
||
|
sound.enable = true;
|
||
|
|
||
|
system.stateVersion = "23.05";
|
||
|
}
|