Simon Bruder
83f1c69713
In the future I may create add other backup jobs, so it should be clear, that this only backs up the system.
31 lines
528 B
Nix
31 lines
528 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.system.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";
|
|
}
|