Simon Bruder
091f6b0e14
This still uses the relase-21.05 branch which should later be changed to nixos-21.05.
48 lines
793 B
Nix
48 lines
793 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../modules
|
|
../../users/simon
|
|
];
|
|
|
|
sbruder = {
|
|
games.enable = true;
|
|
gui.enable = true;
|
|
media-proxy.enable = true;
|
|
restic.system = {
|
|
enable = true;
|
|
extraPaths = [
|
|
"/data"
|
|
];
|
|
};
|
|
unfree.allowSoftware = true;
|
|
wireguard.home.enable = true;
|
|
};
|
|
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
services.tor = {
|
|
enable = true;
|
|
client.enable = true;
|
|
};
|
|
services.privoxy = {
|
|
enable = true;
|
|
enableTor = true;
|
|
};
|
|
|
|
networking.hostName = "sayuri";
|
|
|
|
system.stateVersion = "20.03";
|
|
|
|
specialisation = {
|
|
foldingathome.configuration = {
|
|
services.foldingathome = {
|
|
enable = true;
|
|
user = "sbruder";
|
|
};
|
|
};
|
|
};
|
|
}
|