c3h-nixfiles/hosts/nuc/configuration.nix
2021-08-21 18:57:02 +02:00

25 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";
}