2022-11-19 20:00:54 +01:00
|
|
|
|
{ nixos-hardware, ... }:
|
2022-12-23 09:20:53 +01:00
|
|
|
|
{ pkgs, config, ... }:
|
2022-05-04 10:46:29 +02:00
|
|
|
|
{
|
2022-10-13 14:14:30 +02:00
|
|
|
|
imports = [
|
|
|
|
|
nixos-hardware.nixosModules.common-cpu-amd
|
2022-10-17 22:21:04 +02:00
|
|
|
|
nixos-hardware.nixosModules.common-cpu-amd-pstate
|
2022-10-13 14:14:30 +02:00
|
|
|
|
nixos-hardware.nixosModules.common-gpu-amd
|
|
|
|
|
nixos-hardware.nixosModules.common-pc-ssd
|
|
|
|
|
|
|
|
|
|
../../users/erwin
|
|
|
|
|
../../users/root
|
|
|
|
|
../../users/builder
|
|
|
|
|
];
|
2021-11-21 19:07:12 +01:00
|
|
|
|
|
|
|
|
|
eboskma = {
|
2022-08-14 16:38:25 +02:00
|
|
|
|
users = {
|
|
|
|
|
erwin = {
|
2022-08-18 16:37:26 +02:00
|
|
|
|
enable = true;
|
2022-11-11 11:54:21 +01:00
|
|
|
|
home = true;
|
2022-08-14 16:38:25 +02:00
|
|
|
|
};
|
|
|
|
|
builder.enable = true;
|
2022-07-12 08:37:28 +02:00
|
|
|
|
};
|
2022-01-06 12:30:32 +01:00
|
|
|
|
# backscrub.enable = true;
|
2021-11-21 19:07:12 +01:00
|
|
|
|
base = {
|
|
|
|
|
plymouth.enable = true;
|
|
|
|
|
work = false;
|
2022-09-27 20:39:25 +02:00
|
|
|
|
udev-rules = {
|
|
|
|
|
qmk = true;
|
|
|
|
|
solo2 = true;
|
|
|
|
|
picotool = true;
|
|
|
|
|
blink1 = true;
|
|
|
|
|
probe-rs = true;
|
|
|
|
|
};
|
2021-11-21 19:07:12 +01:00
|
|
|
|
};
|
2021-11-22 08:04:54 +01:00
|
|
|
|
bluetooth.enable = true;
|
2021-11-21 19:07:12 +01:00
|
|
|
|
desktop = {
|
|
|
|
|
enable = true;
|
2022-11-11 11:54:21 +01:00
|
|
|
|
wayland = true;
|
2021-11-21 19:07:12 +01:00
|
|
|
|
};
|
2021-11-27 16:01:21 +01:00
|
|
|
|
docker.enable = true;
|
2022-02-09 08:13:16 +01:00
|
|
|
|
element-web.enable = false;
|
2021-11-27 16:01:21 +01:00
|
|
|
|
fonts.enable = true;
|
|
|
|
|
gnome.enable = true;
|
2022-11-19 20:00:54 +01:00
|
|
|
|
greetd = {
|
|
|
|
|
enable = true;
|
|
|
|
|
sway = true;
|
2023-10-09 14:39:38 +02:00
|
|
|
|
wallpaper = ../../wallpapers/river-2560.png;
|
2022-11-19 20:00:54 +01:00
|
|
|
|
};
|
2023-07-04 20:32:16 +02:00
|
|
|
|
libvirtd.enable = false;
|
2022-02-11 11:30:51 +01:00
|
|
|
|
livebook = {
|
2023-01-23 16:32:46 +01:00
|
|
|
|
enable = false;
|
2022-02-11 11:30:51 +01:00
|
|
|
|
dataDir = "/home/erwin/workspace/livebook";
|
|
|
|
|
userMapping = "1000:100";
|
|
|
|
|
};
|
2023-02-28 13:20:45 +01:00
|
|
|
|
lxd.enable = true;
|
2021-11-21 19:07:12 +01:00
|
|
|
|
networking = {
|
|
|
|
|
enable = true;
|
|
|
|
|
};
|
2021-11-27 16:01:21 +01:00
|
|
|
|
nix-common = {
|
|
|
|
|
enable = true;
|
2022-10-10 18:35:50 +02:00
|
|
|
|
cross-systems = [ "aarch64-linux" ];
|
2021-11-27 16:01:21 +01:00
|
|
|
|
};
|
2022-06-24 08:42:58 +02:00
|
|
|
|
tablet.enable = false;
|
2023-10-23 08:12:48 +02:00
|
|
|
|
sound = {
|
|
|
|
|
enable = true;
|
|
|
|
|
jack = true;
|
|
|
|
|
};
|
2021-12-06 09:58:39 +01:00
|
|
|
|
systemd.enable = true;
|
2021-11-21 19:07:12 +01:00
|
|
|
|
};
|
|
|
|
|
|
2023-07-18 10:52:44 +02:00
|
|
|
|
|
2023-09-13 14:50:03 +02:00
|
|
|
|
fileSystems = {
|
|
|
|
|
"/" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/42065c7e-d0aa-4de8-a913-014cf59d48ac";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2023-07-18 10:52:44 +02:00
|
|
|
|
|
2023-09-13 14:50:03 +02:00
|
|
|
|
"/boot" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/4064-A1BE";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
2023-07-18 10:52:44 +02:00
|
|
|
|
|
2023-09-13 14:50:03 +02:00
|
|
|
|
"/home" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/082ec5d2-238e-4713-9c37-31b1cb0fb8c3";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2023-07-18 10:52:44 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices = [{ device = "/dev/disk/by-uuid/d93788f7-1b94-4687-8313-055d17f42b7e"; }];
|
|
|
|
|
|
|
|
|
|
# high-resolution display
|
|
|
|
|
# hardware.video.hidpi.enable = lib.mkDefault true;
|
|
|
|
|
|
|
|
|
|
# Enable firmware
|
|
|
|
|
hardware.enableAllFirmware = true;
|
|
|
|
|
|
|
|
|
|
# i2c support
|
|
|
|
|
hardware.i2c.enable = true;
|
|
|
|
|
|
2023-05-28 12:48:51 +02:00
|
|
|
|
boot = {
|
2023-07-18 10:52:44 +02:00
|
|
|
|
initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
|
|
|
|
|
initrd.kernelModules = [ ];
|
|
|
|
|
|
2023-09-11 20:13:44 +02:00
|
|
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
2023-07-18 10:52:44 +02:00
|
|
|
|
kernelModules = [ "kvm-amd" "apple-mfi-fastcharge" "zenpower" "nf_nat_ftp" ];
|
|
|
|
|
kernelParams = [ "amd_pstate.shared_mem=1" ];
|
2023-09-13 14:50:03 +02:00
|
|
|
|
extraModulePackages = with config.boot.kernelPackages; [ zenpower cpupower ];
|
2023-07-18 10:52:44 +02:00
|
|
|
|
|
2023-05-28 12:48:51 +02:00
|
|
|
|
loader = {
|
|
|
|
|
systemd-boot = {
|
|
|
|
|
enable = true;
|
|
|
|
|
configurationLimit = 10;
|
|
|
|
|
};
|
|
|
|
|
efi.canTouchEfiVariables = true;
|
2022-01-26 14:59:34 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
2021-11-21 19:07:12 +01:00
|
|
|
|
|
|
|
|
|
time.timeZone = "Europe/Amsterdam";
|
|
|
|
|
|
|
|
|
|
networking = {
|
|
|
|
|
hostName = "loki";
|
|
|
|
|
useDHCP = false;
|
2023-04-19 09:32:06 +02:00
|
|
|
|
networkmanager.enable = false;
|
2022-09-21 18:36:31 +02:00
|
|
|
|
useNetworkd = true;
|
|
|
|
|
|
|
|
|
|
hosts = {
|
|
|
|
|
"10.0.0.252" = [ "pve.datarift.nl" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
firewall = {
|
|
|
|
|
trustedInterfaces = [ "lo" ];
|
2022-09-27 20:38:45 +02:00
|
|
|
|
allowedTCPPorts = [
|
|
|
|
|
# NFS
|
2022-10-07 20:42:59 +02:00
|
|
|
|
111
|
|
|
|
|
2049
|
|
|
|
|
4100
|
|
|
|
|
4101
|
|
|
|
|
4102
|
|
|
|
|
20048
|
2022-09-27 20:38:45 +02:00
|
|
|
|
|
|
|
|
|
# Horus System V2
|
2022-10-07 20:42:59 +02:00
|
|
|
|
12345
|
|
|
|
|
5555
|
|
|
|
|
5556
|
|
|
|
|
|
2022-09-27 20:38:45 +02:00
|
|
|
|
# Elixir/Phoenix dev environment
|
|
|
|
|
4000
|
2022-10-07 20:42:59 +02:00
|
|
|
|
|
2023-05-10 15:13:24 +02:00
|
|
|
|
# SteamLink
|
|
|
|
|
27036
|
|
|
|
|
27037
|
|
|
|
|
|
2022-09-27 20:38:45 +02:00
|
|
|
|
# Sunshine
|
|
|
|
|
48010
|
|
|
|
|
];
|
2022-10-07 20:42:59 +02:00
|
|
|
|
|
2022-09-27 20:38:45 +02:00
|
|
|
|
allowedUDPPorts = [
|
|
|
|
|
# NFS
|
2022-10-07 20:42:59 +02:00
|
|
|
|
111
|
|
|
|
|
2049
|
|
|
|
|
4100
|
|
|
|
|
4101
|
|
|
|
|
4102
|
|
|
|
|
20048
|
2022-12-23 09:20:53 +01:00
|
|
|
|
|
2023-05-10 15:13:24 +02:00
|
|
|
|
# SteamLink
|
|
|
|
|
27031
|
|
|
|
|
27036
|
|
|
|
|
|
2022-12-23 09:20:53 +01:00
|
|
|
|
# WireGuard
|
|
|
|
|
51820
|
2022-09-27 20:38:45 +02:00
|
|
|
|
];
|
2022-10-07 20:42:59 +02:00
|
|
|
|
|
2022-09-27 20:38:45 +02:00
|
|
|
|
allowedTCPPortRanges = [
|
|
|
|
|
# Sunshine
|
|
|
|
|
{ from = 47984; to = 47990; }
|
2023-08-19 19:39:23 +02:00
|
|
|
|
# Sonos / noson
|
|
|
|
|
{ from = 1400; to = 1410; }
|
2022-09-27 20:38:45 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
allowedUDPPortRanges = [
|
|
|
|
|
# Sunshine
|
|
|
|
|
{ from = 47998; to = 48000; }
|
2023-08-19 19:39:23 +02:00
|
|
|
|
# Sonos / noson / pulseaudio
|
|
|
|
|
{ from = 1400; to = 1410; }
|
2022-09-27 20:38:45 +02:00
|
|
|
|
];
|
2022-12-23 09:20:53 +01:00
|
|
|
|
};
|
2021-11-21 19:07:12 +01:00
|
|
|
|
};
|
|
|
|
|
|
2023-09-11 20:13:44 +02:00
|
|
|
|
security.pam.u2f = {
|
|
|
|
|
enable = true;
|
|
|
|
|
# interactive = true;
|
|
|
|
|
cue = true;
|
|
|
|
|
};
|
|
|
|
|
|
2022-09-21 18:36:31 +02:00
|
|
|
|
systemd.network = {
|
|
|
|
|
enable = true;
|
|
|
|
|
|
2023-04-19 09:32:06 +02:00
|
|
|
|
wait-online = {
|
|
|
|
|
anyInterface = true;
|
|
|
|
|
};
|
|
|
|
|
|
2023-01-23 16:32:46 +01:00
|
|
|
|
netdevs = {
|
|
|
|
|
"10-wghorus" = {
|
|
|
|
|
netdevConfig = {
|
|
|
|
|
Kind = "wireguard";
|
|
|
|
|
MTUBytes = "1420";
|
|
|
|
|
Name = "wghorus";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
wireguardConfig = {
|
|
|
|
|
PrivateKeyFile = config.sops.secrets.wireguard-horus-privkey.path;
|
|
|
|
|
ListenPort = 51820;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
wireguardPeers = [
|
|
|
|
|
{
|
|
|
|
|
wireguardPeerConfig = {
|
|
|
|
|
PublicKey = "6faxlUG8+F7uVrKk/OJqqy5k2+OzrhXc/cV6Zsfbl0c=";
|
|
|
|
|
AllowedIPs = [ "192.168.4.0/23" "192.168.6.0/24" "192.168.7.0/24" "192.168.8.0/24" ];
|
|
|
|
|
Endpoint = "212.45.34.195:51820";
|
|
|
|
|
PersistentKeepalive = 25;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2022-09-21 18:36:31 +02:00
|
|
|
|
networks = {
|
|
|
|
|
"40-enp4s0" = {
|
2023-07-04 20:32:16 +02:00
|
|
|
|
matchConfig = {
|
|
|
|
|
Name = "enp4s0";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
networkConfig = {
|
|
|
|
|
DHCP = "yes";
|
|
|
|
|
};
|
2022-09-21 18:36:31 +02:00
|
|
|
|
};
|
2023-01-23 16:32:46 +01:00
|
|
|
|
"40-wghorus" = {
|
|
|
|
|
matchConfig = {
|
|
|
|
|
Name = "wghorus";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
linkConfig = {
|
|
|
|
|
ActivationPolicy = "manual";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
networkConfig = {
|
|
|
|
|
DHCP = "no";
|
|
|
|
|
DNS = "192.168.4.1";
|
|
|
|
|
Domains = [ "bedum.horus.nu" "internal.horus.nu" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
address = [
|
|
|
|
|
"10.10.4.2/24"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
routes = [
|
|
|
|
|
{
|
|
|
|
|
routeConfig =
|
|
|
|
|
{
|
|
|
|
|
Destination = "192.168.4.0/23";
|
|
|
|
|
Scope = "link";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
routeConfig = {
|
|
|
|
|
Destination = "192.168.6.0/24";
|
|
|
|
|
Scope = "link";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
routeConfig =
|
|
|
|
|
{
|
|
|
|
|
Destination = "192.168.7.0/24";
|
|
|
|
|
Scope = "link";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
routeConfig =
|
|
|
|
|
{
|
|
|
|
|
Destination = "192.168.8.0/24";
|
|
|
|
|
Scope = "link";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
};
|
2022-09-21 18:36:31 +02:00
|
|
|
|
};
|
2023-01-06 00:14:33 +01:00
|
|
|
|
|
|
|
|
|
links = {
|
|
|
|
|
"40-enp4s0" = {
|
|
|
|
|
matchConfig = {
|
2023-09-29 11:52:45 +02:00
|
|
|
|
OriginalName = "enp4s0";
|
2023-01-06 00:14:33 +01:00
|
|
|
|
};
|
|
|
|
|
linkConfig = {
|
|
|
|
|
WakeOnLan = "magic";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2022-09-21 18:36:31 +02:00
|
|
|
|
};
|
2021-11-21 19:07:12 +01:00
|
|
|
|
|
2023-09-13 14:50:03 +02:00
|
|
|
|
services = {
|
|
|
|
|
udev = {
|
|
|
|
|
extraHwdb = ''
|
|
|
|
|
evdev:name:ELECOM TrackBall Mouse HUGE TrackBall:*
|
|
|
|
|
ID_INPUT_KEY=1
|
|
|
|
|
KEYBOARD_KEY_90008=red
|
|
|
|
|
KEYBOARD_KEY_90007=copy
|
|
|
|
|
KEYBOARD_KEY_90006=paste
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
extraRules = ''
|
|
|
|
|
ACTION=="add", ATTRS{idVendor}=="0951", ATTRS{idProduct}=="1666", NAME=keys
|
2023-09-15 21:21:48 +02:00
|
|
|
|
ACTION=="add", ATTRS{idVendor}=="0781", ATTRS{idProduct}=="55b1", NAME=vault
|
2023-09-13 14:50:03 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2021-11-26 22:21:16 +01:00
|
|
|
|
|
2023-09-13 14:50:03 +02:00
|
|
|
|
openssh.enable = true;
|
|
|
|
|
|
|
|
|
|
udisks2 = {
|
|
|
|
|
enable = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
envfs.enable = true;
|
|
|
|
|
cpupower-gui.enable = true;
|
2023-10-05 14:58:32 +02:00
|
|
|
|
teamviewer.enable = true;
|
2023-09-13 14:50:03 +02:00
|
|
|
|
tailscale.enable = true;
|
|
|
|
|
sunshine = {
|
|
|
|
|
enable = true;
|
|
|
|
|
user = "erwin";
|
|
|
|
|
openFirewall = true;
|
|
|
|
|
};
|
2023-10-05 14:58:32 +02:00
|
|
|
|
nfs.server = {
|
|
|
|
|
enable = true;
|
|
|
|
|
exports = ''
|
|
|
|
|
/home/erwin/proxmox-backup 10.0.0.0/24(rw,sync,no_subtree_check,anonuid=1000,anongid=100,all_squash)
|
|
|
|
|
'';
|
|
|
|
|
lockdPort = 4101;
|
|
|
|
|
mountdPort = 4102;
|
|
|
|
|
statdPort = 4100;
|
|
|
|
|
};
|
2023-09-11 20:13:44 +02:00
|
|
|
|
};
|
|
|
|
|
|
2023-09-13 14:50:03 +02:00
|
|
|
|
programs = {
|
|
|
|
|
gnome-disks.enable = true;
|
|
|
|
|
# ssh.startAgent = true;
|
2023-01-10 08:19:33 +01:00
|
|
|
|
|
2023-09-13 14:50:03 +02:00
|
|
|
|
gamemode = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings = {
|
|
|
|
|
general = {
|
|
|
|
|
renice = 5;
|
|
|
|
|
};
|
|
|
|
|
custom = {
|
|
|
|
|
start = "${pkgs.libnotify}/bin/notify-send 'GameMode started'";
|
|
|
|
|
end = "${pkgs.libnotify}/bin/notify-send 'GameMode ended'";
|
|
|
|
|
};
|
2023-07-04 20:32:16 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2023-01-31 17:13:02 +01:00
|
|
|
|
powerManagement = {
|
|
|
|
|
cpuFreqGovernor = "ondemand";
|
|
|
|
|
};
|
2022-10-17 22:21:04 +02:00
|
|
|
|
|
2023-09-29 11:52:45 +02:00
|
|
|
|
environment = {
|
|
|
|
|
sessionVariables = {
|
|
|
|
|
AMD_VULKAN_ICD = "RADV";
|
|
|
|
|
};
|
|
|
|
|
systemPackages = with pkgs; [
|
|
|
|
|
appimage-run
|
|
|
|
|
tailscale
|
|
|
|
|
];
|
|
|
|
|
};
|
2023-04-09 23:19:58 +02:00
|
|
|
|
|
2021-11-26 22:21:16 +01:00
|
|
|
|
sops.defaultSopsFile = ./secrets.yaml;
|
2021-12-10 20:11:36 +01:00
|
|
|
|
sops.secrets = {
|
|
|
|
|
ha_now_playing_token = {
|
|
|
|
|
owner = "erwin";
|
|
|
|
|
};
|
|
|
|
|
gh_token = {
|
|
|
|
|
owner = "erwin";
|
|
|
|
|
};
|
|
|
|
|
renovate_env = {
|
|
|
|
|
owner = "erwin";
|
|
|
|
|
};
|
2022-06-27 10:10:04 +02:00
|
|
|
|
livebook_cookie = {
|
|
|
|
|
owner = "erwin";
|
|
|
|
|
};
|
2022-12-05 10:56:44 +01:00
|
|
|
|
livebook-password = {
|
|
|
|
|
owner = "erwin";
|
|
|
|
|
};
|
2023-01-23 16:32:46 +01:00
|
|
|
|
wireguard-horus-privkey = {
|
|
|
|
|
owner = "systemd-network";
|
|
|
|
|
};
|
2021-11-26 22:21:16 +01:00
|
|
|
|
};
|
|
|
|
|
|
2021-11-21 19:07:12 +01:00
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
2022-10-25 09:40:08 +02:00
|
|
|
|
system.stateVersion = "22.05"; # Did you read the comment?
|
2021-11-21 19:07:12 +01:00
|
|
|
|
}
|