2020-08-22 17:44:39 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2020-12-05 16:05:26 +01:00
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
../../modules
|
|
|
|
../../users/simon
|
|
|
|
];
|
2020-08-22 17:44:39 +02:00
|
|
|
|
2020-12-05 13:48:06 +01:00
|
|
|
sbruder = {
|
2021-01-07 18:29:18 +01:00
|
|
|
games.enable = true;
|
2020-12-05 15:44:58 +01:00
|
|
|
gui.enable = true;
|
2020-12-31 15:44:24 +01:00
|
|
|
media-proxy.enable = true;
|
2021-02-28 12:21:04 +01:00
|
|
|
restic.system.enable = true;
|
2021-01-03 16:28:35 +01:00
|
|
|
unfree.allowSoftware = true;
|
2021-02-20 19:03:40 +01:00
|
|
|
wireguard.home.enable = true;
|
2020-12-05 13:48:06 +01:00
|
|
|
};
|
|
|
|
|
2021-01-20 16:31:59 +01:00
|
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
|
2020-12-31 12:55:20 +01:00
|
|
|
services.tor = {
|
|
|
|
enable = true;
|
|
|
|
client.enable = true;
|
|
|
|
};
|
|
|
|
|
2020-08-22 17:44:39 +02:00
|
|
|
networking.hostName = "nunotaba";
|
2021-01-31 12:11:39 +01:00
|
|
|
|
|
|
|
system.stateVersion = "20.03";
|
2020-08-22 17:44:39 +02:00
|
|
|
}
|