c3h-nixfiles/hosts/nuc/configuration.nix

27 lines
577 B
Nix
Raw Normal View History

2021-08-21 16:47:21 +00:00
{ ... }:
{
imports = [
./hardware-configuration.nix
2021-10-22 22:26:04 +00:00
<nixos-hardware/common/cpu/intel>
2021-08-21 16:47:21 +00:00
../../common
# services
2021-10-22 22:25:25 +00:00
../../shared-services/pulseaudio.nix
2021-10-24 18:55:12 +00:00
../../shared-services/nfs-client.nix
2021-10-22 22:25:25 +00:00
../../shared-services/mpd.nix
../../shared-services/ympd.nix
../../shared-services/spotifyd.nix
../../shared-services/desktop.nix
../../shared-services/vnc.nix
../../shared-services/webserver.nix
2021-08-21 16:47:21 +00:00
];
networking.hostName = "nuc";
networking.domain = "c3h";
boot.loader.systemd-boot.enable = true;
system.stateVersion = "21.05";
}