2021-09-30 07:32:03 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
../../modules
|
|
|
|
../../users/simon
|
|
|
|
];
|
|
|
|
|
|
|
|
sbruder = {
|
|
|
|
games = {
|
|
|
|
enable = true;
|
|
|
|
performanceIndex = 8;
|
|
|
|
};
|
|
|
|
gui.enable = true;
|
|
|
|
media-proxy.enable = true;
|
|
|
|
mullvad.enable = true;
|
|
|
|
restic.system.enable = true;
|
|
|
|
unfree.allowSoftware = true;
|
|
|
|
wireguard.home.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
virtualisation.libvirtd = {
|
|
|
|
enable = true;
|
2021-12-01 17:56:53 +01:00
|
|
|
qemu.package = pkgs.qemu_kvm;
|
2021-09-30 07:32:03 +02:00
|
|
|
};
|
|
|
|
|
2021-11-02 11:13:59 +01:00
|
|
|
services.samba = {
|
|
|
|
enable = true;
|
|
|
|
securityType = "user";
|
|
|
|
extraConfig = ''
|
|
|
|
interfaces = 192.168.122.1
|
|
|
|
bind interfaces only = yes
|
|
|
|
map to guest = bad user
|
|
|
|
load printers = no
|
|
|
|
printing = bsd
|
|
|
|
disable spoolss = yes
|
|
|
|
usershare max shares = 0
|
|
|
|
acl allow execute always = True
|
|
|
|
'';
|
|
|
|
shares = {
|
|
|
|
qemu = {
|
|
|
|
path = "/home/simon/.cache/vm-share";
|
|
|
|
browseable = "yes";
|
|
|
|
"read only" = "no";
|
|
|
|
"guest ok" = "yes";
|
|
|
|
"force user" = "simon";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
networking.firewall.trustedInterfaces = [ "virbr0" ];
|
|
|
|
|
2021-09-30 07:32:03 +02:00
|
|
|
services.tor = {
|
|
|
|
enable = true;
|
|
|
|
client.enable = true;
|
|
|
|
};
|
|
|
|
services.privoxy = {
|
|
|
|
enable = true;
|
|
|
|
enableTor = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.hostName = "mayushii";
|
|
|
|
|
|
|
|
system.stateVersion = "21.05";
|
|
|
|
}
|