nixos-config/machines/hitagi/configuration.nix

42 lines
693 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2020-10-17 23:18:22 +02:00
{
2020-12-05 16:05:26 +01:00
imports = [
./hardware-configuration.nix
../../modules
../../users/simon
];
2020-10-17 23:18:22 +02:00
2020-12-05 13:48:06 +01:00
sbruder = {
games = {
enable = true;
performanceIndex = 8;
};
gui.enable = true;
media-proxy.enable = true;
mullvad.enable = true;
restic.system = {
enable = true;
uploadLimit = 1500;
extraPaths = [
"/data"
];
};
unfree.allowSoftware = true;
wireguard.home.enable = true;
2020-12-05 13:48:06 +01:00
};
2020-12-31 12:55:20 +01:00
services.tor = {
enable = true;
client.enable = true;
};
services.privoxy = {
enable = true;
enableTor = true;
};
2020-12-31 12:55:20 +01:00
2022-12-30 19:52:58 +01:00
networking.hostName = "hitagi";
system.stateVersion = "20.03";
2020-10-17 23:18:22 +02:00
}