26 lines
379 B
Nix
26 lines
379 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
../../common
|
||
|
|
||
|
# services
|
||
|
./pulseaudio.nix
|
||
|
./nfs-server.nix
|
||
|
./mpd.nix
|
||
|
./ympd.nix
|
||
|
./spotifyd.nix
|
||
|
./desktop.nix
|
||
|
./vnc.nix
|
||
|
./webserver.nix
|
||
|
];
|
||
|
|
||
|
networking.hostName = "nuc";
|
||
|
networking.domain = "c3h";
|
||
|
|
||
|
boot.loader.systemd-boot.enable = true;
|
||
|
|
||
|
system.stateVersion = "21.05";
|
||
|
}
|