nixos-config/machines/sayuri/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

35 lines
556 B
Nix

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