387 lines
9.5 KiB
Nix
387 lines
9.5 KiB
Nix
|
|
{ pkgs, lib, workDir, self, secretsDir, config, inputs, ... }:
|
|
{
|
|
|
|
# https://bugzilla.kernel.org/show_bug.cgi?id=110941
|
|
# ??????????? TODO
|
|
# boot.kernelParams = [ "intel_pstate=no_hwp" ];
|
|
|
|
# Supposedly better for the SSD.
|
|
# ??????????? TODO
|
|
# fileSystems."/".options = [ "noatime" "nodiratime" "discard" ];
|
|
|
|
|
|
imports = [
|
|
../common/all.nix
|
|
../common/nixos-headless.nix
|
|
../common/nixos-graphical.nix
|
|
../common/building.nix
|
|
|
|
inputs.networkmanager.nixosModules.networkmanager
|
|
inputs.home-manager.nixosModules.home-manager
|
|
../users/me/gui.nix
|
|
../users/root/default.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
cifs-utils
|
|
ntfs3g
|
|
];
|
|
|
|
|
|
hardware.bluetooth.settings = {
|
|
General = {
|
|
MultiProfile = "multiple";
|
|
};
|
|
};
|
|
|
|
nix = {
|
|
distributedBuilds = false; # false, because i can't build on hpm currently ... not signed by trusted user error
|
|
};
|
|
|
|
# to build rpi images
|
|
boot.binfmt.emulatedSystems = [
|
|
"aarch64-linux"
|
|
];
|
|
|
|
# some bind mounts
|
|
fileSystems."${workDir}/priv-share/things" = {
|
|
device = "${workDir}/things";
|
|
options = [ "bind" ];
|
|
};
|
|
fileSystems."${workDir}/things/htl" = {
|
|
device = "${workDir}/htl";
|
|
options = [ "bind" ];
|
|
};
|
|
fileSystems."${workDir}/things/diplomarbeit" = {
|
|
device = "${workDir}/diplomarbeit";
|
|
options = [ "bind" ];
|
|
};
|
|
|
|
################################ my youtube blocking service #############################
|
|
systemd.services.stark =
|
|
let
|
|
stark = pkgs.writeShellApplication {
|
|
name = "stark";
|
|
|
|
runtimeInputs = with pkgs; [ curl w3m ];
|
|
|
|
text = ''
|
|
if [ -f "/etc/host-youtube-block" ];
|
|
then
|
|
timeout=$(cat /etc/host-youtube-block)
|
|
if [[ "$timeout" == "1" ]]
|
|
then
|
|
rm /etc/host-youtube-block
|
|
else
|
|
echo old: "$timeout"
|
|
timeout=$((timeout - 1))
|
|
echo new: "$timeout"
|
|
echo -en $timeout > /etc/host-youtube-block
|
|
fi
|
|
else
|
|
rm /etc/hosts
|
|
cat ${self}/misc/my-hosts > /etc/hosts
|
|
cat ${self}/misc/my-hosts-"$(cat /etc/current_hosts)" >> /etc/hosts
|
|
fi
|
|
'';
|
|
};
|
|
in
|
|
{
|
|
enable = true;
|
|
description = "block Youtube";
|
|
#type = "simple";
|
|
#unitConfig = {
|
|
#Type = "simple";
|
|
#};
|
|
serviceConfig = {
|
|
Restart = "always";
|
|
RestartSec = "60s";
|
|
ExecStart = "${stark}/bin/stark";
|
|
};
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
|
|
|
|
############################## syncthing for main #############################################
|
|
services.syncthing = {
|
|
enable = true;
|
|
user = "me";
|
|
#dataDir = "/home/";
|
|
configDir = "/home/me/.config/syncthing";
|
|
extraFlags = ["-no-browser"];
|
|
openDefaultPorts = true;
|
|
overrideDevices = true; # overrides any devices added or deleted through the WebUI
|
|
overrideFolders = true; # overrides any folders added or deleted through the WebUI
|
|
devices = {
|
|
"seb-phone" = {
|
|
id = builtins.readFile "${secretsDir}/syncthing-id-phone";
|
|
#addresses = [ "tcp://192.168.200.24:22000" ];
|
|
};
|
|
"seb-tab" = {
|
|
id = builtins.readFile "${secretsDir}/syncthing-id-tab";
|
|
#addresses = [ "tcp://192.168.200.26:22000" ];
|
|
};
|
|
};
|
|
folders = {
|
|
"priv-share" = { # Name of folder in Syncthing, also the folder ID
|
|
path = "/home/me/work/priv-share"; # Which folder to add to Syncthing
|
|
#devices = [ "seb-phone" "seb-tab" ]; # Which devices to share the folder with
|
|
devices = [ "seb-phone" "seb-tab" ]; # Which devices to share the folder with
|
|
};
|
|
};
|
|
};
|
|
|
|
|
|
############################## networking ###############################################
|
|
|
|
networking.hostName = "main";
|
|
|
|
security.polkit.enable = true;
|
|
|
|
services.avahi.enable = true;
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
networking.firewall.allowPing = true;
|
|
networking.firewall.enable = true;
|
|
services.samba.openFirewall = true;
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
5357 # wsdd
|
|
8888 # for general usage
|
|
9999 # for general usage
|
|
8080 # for mitm proxy
|
|
51820 # wireguard
|
|
];
|
|
|
|
networking.firewall.allowedUDPPorts = [
|
|
3702 # wsdd
|
|
51820 # wireguard
|
|
];
|
|
|
|
networking.search = [ "c2vi.local" ];
|
|
#networking.hosts = {
|
|
#"10.1.1.3" = [ "phone" ];
|
|
#};
|
|
networking.extraHosts = ''
|
|
${builtins.readFile "${self}/misc/my-hosts"}
|
|
${builtins.readFile "${self}/misc/my-hosts-me"}
|
|
'';
|
|
environment.etc.current_hosts.text = "me";
|
|
environment.etc.current_hosts.mode = "rw";
|
|
#environment.etc.hosts.mode = "rw";
|
|
|
|
networking.networkmanager.profiles = {
|
|
home = {
|
|
connection = {
|
|
id = "home";
|
|
uuid = "a02273d9-ad12-395e-8372-f61129635b6f";
|
|
type = "ethernet";
|
|
autoconnect-priority = "-999";
|
|
interface-name = "enp1s0";
|
|
};
|
|
ipv4 = {
|
|
address1 = "192.168.1.11/24,192.168.1.1";
|
|
dns = "1.1.1.1;";
|
|
method = "manual";
|
|
};
|
|
};
|
|
|
|
htl = {
|
|
connection = {
|
|
id = "htl";
|
|
uuid = "0d3af539-9abd-4417-b882-cbff96fc3490";
|
|
type = "wifi";
|
|
interface-name = "wlp2s0";
|
|
};
|
|
ipv4 = {
|
|
method = "auto";
|
|
};
|
|
wifi = {
|
|
mode = "infrastructure";
|
|
ssid = "HTLinn";
|
|
};
|
|
wifi-security = {
|
|
key-mgmt = "wpa-eap";
|
|
};
|
|
"802-1x" = {
|
|
eap = "peap";
|
|
identity = builtins.readFile "${secretsDir}/school-username";
|
|
password = builtins.readFile "${secretsDir}/school-password";
|
|
phase2-auth = "mschapv2";
|
|
};
|
|
};
|
|
|
|
pt = {
|
|
connection = {
|
|
id = "pt";
|
|
uuid = "f028117e-9eef-47c1-8483-574f7ee798a4";
|
|
type = "bluetooth";
|
|
autoconnect = "false";
|
|
};
|
|
|
|
bluetooth = {
|
|
bdaddr = "E8:78:29:C4:BA:7C";
|
|
type = "panu";
|
|
};
|
|
|
|
ipv4 = {
|
|
address1 = "192.168.44.11/24";
|
|
method = "auto";
|
|
};
|
|
};
|
|
|
|
pw = {
|
|
connection = {
|
|
id = "pw";
|
|
uuid = "e0103dac-7da0-4e32-a01b-487b8c4c813c";
|
|
type = "wifi";
|
|
interface-name = "wlp2s0";
|
|
};
|
|
|
|
wifi = {
|
|
hidden = "true";
|
|
mode = "infrastructure";
|
|
ssid = builtins.readFile "${secretsDir}/wifi-ssid";
|
|
};
|
|
|
|
wifi-security = {
|
|
key-mgmt = "wpa-psk";
|
|
psk = builtins.readFile "${secretsDir}/wifi-password";
|
|
};
|
|
|
|
ipv4 = {
|
|
address1 = "192.168.20.11/24";
|
|
method = "auto";
|
|
};
|
|
};
|
|
|
|
hot = {
|
|
connection = {
|
|
id = "hot";
|
|
uuid = "ab51de8a-9742-465a-928b-be54a83ab6a3";
|
|
type = "wifi";
|
|
autoconnect = "false";
|
|
interface-name = "wlp2s0";
|
|
};
|
|
wifi = {
|
|
mac-address = "0C:96:E6:E3:64:03";
|
|
mode = "ap";
|
|
ssid = "c2vi-main";
|
|
};
|
|
|
|
ipv4 = {
|
|
method = "shared";
|
|
};
|
|
};
|
|
|
|
/*
|
|
me = {
|
|
connection = {
|
|
id = "me";
|
|
uuid = "fe45d3bc-21c6-41ff-bc06-c936017c6e02";
|
|
type = "wireguard";
|
|
autoconnect = "true";
|
|
interface-name = "me0";
|
|
};
|
|
wireguard = {
|
|
listen-port = "51820";
|
|
private-key = builtins.readFile "${secretsDir}/wg-private-main";
|
|
};
|
|
ipv4 = {
|
|
address1 = "10.1.1.11/24";
|
|
method = "manual";
|
|
};
|
|
} // (import ../common/wg-peers.nix { inherit secretsDir; });
|
|
*/
|
|
};
|
|
|
|
networking.wireguard.interfaces = {
|
|
me1 = {
|
|
ips = [ "10.1.1.11/24" ];
|
|
listenPort = 51820;
|
|
|
|
privateKeyFile = "${secretsDir}/wg-private-main";
|
|
|
|
peers = import ../common/wg-peers.nix { inherit secretsDir; };
|
|
};
|
|
};
|
|
|
|
|
|
|
|
#################################### samba ######################################
|
|
services.samba-wsdd.enable = true; # make shares visible for windows 10 clients
|
|
|
|
services.samba = {
|
|
enable = true;
|
|
securityType = "user";
|
|
extraConfig = ''
|
|
security = user
|
|
map to guest = bad user
|
|
guest account = me
|
|
|
|
server role = standalone server
|
|
workgroup = WORKGROUP
|
|
'';
|
|
shares = {
|
|
rpi_schule = {
|
|
path = "${workDir}/rpi-schule/";
|
|
"guest ok" = "yes";
|
|
"read only" = "no";
|
|
public = "yes";
|
|
writable = "yes";
|
|
printable = "no";
|
|
comment = "share for rpi in school wlan";
|
|
};
|
|
|
|
share = {
|
|
comment = "share for sharing stuff";
|
|
path = "${workDir}/share";
|
|
public = "yes";
|
|
"guest ok" = "yes";
|
|
"read only" = "no";
|
|
writable = "yes";
|
|
};
|
|
};
|
|
};
|
|
|
|
|
|
######################################### virtualisation ###############################
|
|
virtualisation.libvirtd.enable = true;
|
|
virtualisation.podman.enable = true;
|
|
|
|
system.activationScripts.setupLibvirt = lib.stringAfter [ "var" ] ''
|
|
mkdir -p /var/lib/libvirt/storage
|
|
ln -nsf ${workDir}/vm/libvirt/my-image-pool.xml /var/lib/libvirt/storage/my-image-pool.xml
|
|
rm -rf /var/lib/libvirt/qemu/networks
|
|
ls ${workDir}/vm/qemu | while read path
|
|
do
|
|
ln -nsf ${workDir}/vm/qemu/$path /var/lib/libvirt/qemu/$path
|
|
done
|
|
|
|
# there is no /bin/bash
|
|
# https://discourse.nixos.org/t/add-bin-bash-to-avoid-unnecessary-pain/5673
|
|
ln -nsf /run/current-system/sw/bin/bash /bin/bash
|
|
'';
|
|
|
|
|
|
############################## swap and hibernate ###################################
|
|
swapDevices = [ { device = "/dev/lvm0/swap"; } ];
|
|
boot.resumeDevice = "/dev/lvm0/swap";
|
|
services.logind = {
|
|
extraConfig = ''
|
|
HandlePowerKey=suspend-then-hibernate
|
|
'';
|
|
lidSwitch = "suspend-then-hibernate";
|
|
lidSwitchExternalPower = "suspend-then-hibernate";
|
|
lidSwitchDocked = "ignore";
|
|
};
|
|
systemd.sleep.extraConfig = ''
|
|
HibernateDelaySec=2h
|
|
HibernateMode=shutdown
|
|
'';
|
|
}
|
|
|
|
|