nixos-config/machines/nunotaba/configuration.nix
Simon Bruder be7e67cf1f
wireguard/home: Make vueko central server
This also restructures the wireguard/home configuration, since now
better peer management is possible.
2021-02-20 19:57:04 +01:00

31 lines
521 B
Nix

{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
../../users/simon
];
sbruder = {
docker.enable = true;
games.enable = true;
gui.enable = true;
media-proxy.enable = true;
restic.enable = true;
unfree.allowSoftware = true;
wireguard.home.enable = true;
};
virtualisation.libvirtd.enable = true;
services.tor = {
enable = true;
client.enable = true;
};
networking.hostName = "nunotaba";
system.stateVersion = "20.03";
}