44 lines
724 B
Nix
44 lines
724 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;
|
|
};
|
|
|
|
networking.hostName = "sayuri";
|
|
|
|
system.stateVersion = "20.03";
|
|
|
|
specialisation = {
|
|
foldingathome.configuration = {
|
|
services.foldingathome = {
|
|
enable = true;
|
|
user = "sbruder";
|
|
};
|
|
};
|
|
};
|
|
}
|