c3h-nixfiles/hosts/nuc/configuration.nix

26 lines
379 B
Nix
Raw Normal View History

2021-08-21 16:47:21 +00:00
{ ... }:
{
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";
}