2022-01-06 13:15:28 +00:00
|
|
|
{ config, lib, pkgs, inputs, ... }:
|
2021-07-29 20:21:51 +00:00
|
|
|
|
2021-11-01 20:33:21 +00:00
|
|
|
{
|
2022-01-06 13:15:28 +00:00
|
|
|
imports = with inputs.nixos-hardware.nixosModules; [
|
|
|
|
common-cpu-amd common-gpu-amd common-pc-ssd
|
|
|
|
];
|
|
|
|
|
2021-08-31 16:01:29 +00:00
|
|
|
fileSystems = {
|
|
|
|
"/" = {
|
|
|
|
device = "/dev/disk/by-label/root";
|
|
|
|
fsType = "btrfs";
|
|
|
|
};
|
|
|
|
"/boot" = {
|
|
|
|
device = "/dev/disk/by-label/boot";
|
|
|
|
fsType = "vfat";
|
|
|
|
};
|
|
|
|
"/mnt/Storage" = {
|
|
|
|
device = "/dev/disk/by-label/storage";
|
2022-02-11 13:01:52 +00:00
|
|
|
fsType = "btrfs";
|
2022-02-14 17:34:04 +00:00
|
|
|
options = [
|
|
|
|
"noatime"
|
|
|
|
"nodev"
|
|
|
|
"nosuid"
|
|
|
|
];
|
2021-08-23 18:28:54 +00:00
|
|
|
};
|
|
|
|
};
|
2021-11-01 20:33:21 +00:00
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
2021-10-26 15:30:05 +00:00
|
|
|
gajim-mainwindow
|
2021-11-01 20:33:21 +00:00
|
|
|
virt-manager qemu scream
|
2021-08-31 16:01:29 +00:00
|
|
|
replaysorcery # Custom package
|
|
|
|
vfio-isolate # Custom Package
|
|
|
|
mumble
|
2022-02-14 17:34:04 +00:00
|
|
|
piper trackma # Custom package
|
2021-12-06 12:39:37 +00:00
|
|
|
anime-dl # Custom package
|
2021-11-01 20:33:21 +00:00
|
|
|
thunderbird
|
2022-01-06 13:15:28 +00:00
|
|
|
#nwg-launchers
|
2021-11-06 19:26:54 +00:00
|
|
|
gnome-podcasts
|
2021-11-09 19:17:34 +00:00
|
|
|
cantata
|
|
|
|
newsflash
|
2022-02-02 19:35:20 +00:00
|
|
|
sublime-music
|
2022-02-02 11:08:36 +00:00
|
|
|
anki
|
2022-03-28 16:54:54 +00:00
|
|
|
gnome-podcasts
|
2022-02-02 11:08:36 +00:00
|
|
|
#psst
|
2022-03-23 14:12:36 +00:00
|
|
|
|
2022-04-23 11:22:03 +00:00
|
|
|
evolution
|
|
|
|
|
2022-03-23 14:12:36 +00:00
|
|
|
# Proprietary stuff (yikes)
|
2022-03-27 10:30:13 +00:00
|
|
|
discord-wrapped discord-app-wrapped spotify-wrapped
|
2021-08-31 16:01:29 +00:00
|
|
|
];
|
2022-02-11 13:01:52 +00:00
|
|
|
|
2021-11-01 20:33:21 +00:00
|
|
|
ptw = {
|
2021-09-06 16:10:14 +00:00
|
|
|
programs = {
|
2022-03-31 14:53:42 +00:00
|
|
|
bluray.enable = true;
|
2021-11-04 14:11:46 +00:00
|
|
|
mpv = {
|
|
|
|
primaryScreen = "C27F398";
|
|
|
|
enable = true;
|
|
|
|
};
|
2022-03-19 14:19:11 +00:00
|
|
|
#sway.enable = true;
|
2021-11-01 20:33:21 +00:00
|
|
|
alacritty.enable = true;
|
|
|
|
emacs.enable = true;
|
|
|
|
firefox.enable = true;
|
2022-02-18 19:18:56 +00:00
|
|
|
git.enable = true; #gnome-terminal.enable = true;
|
2021-11-01 20:33:21 +00:00
|
|
|
tmux.enable = true;
|
2021-11-05 22:41:19 +00:00
|
|
|
waybar = {
|
|
|
|
enable = true;
|
|
|
|
output = "DP-2";
|
|
|
|
};
|
2022-02-02 11:08:36 +00:00
|
|
|
#xournalpp.enable = true;
|
2021-11-01 20:33:21 +00:00
|
|
|
zsh.enable = true;
|
2022-04-23 18:12:59 +00:00
|
|
|
direnv.enable = true;
|
2022-03-19 14:19:11 +00:00
|
|
|
office.enable = true;
|
2022-02-24 10:06:07 +00:00
|
|
|
plasma.enable = true;
|
2022-02-02 11:08:36 +00:00
|
|
|
gaming.enable = true;
|
2021-09-06 16:10:14 +00:00
|
|
|
};
|
2021-11-01 20:33:21 +00:00
|
|
|
services = {
|
|
|
|
gamemode.enable = true;
|
2022-04-05 17:22:36 +00:00
|
|
|
gnome.enable = true;
|
2022-02-02 14:55:38 +00:00
|
|
|
input-remapper = {
|
2022-03-19 14:19:11 +00:00
|
|
|
enable = false;
|
2022-02-14 17:34:04 +00:00
|
|
|
postStartCommand = "${pkgs.input-remapper}/bin/input-remapper-control --command start --preset NOOP --device \"Razer Razer Tartarus V2\"";
|
2022-02-02 14:55:38 +00:00
|
|
|
};
|
2022-03-27 10:30:13 +00:00
|
|
|
gdm = {
|
|
|
|
enable = true;
|
|
|
|
monitors = ../data/miku/monitors.xml;
|
|
|
|
};
|
2021-11-01 20:33:21 +00:00
|
|
|
};
|
|
|
|
system = {
|
|
|
|
i18n.enable = true;
|
|
|
|
singleUser = "alexander";
|
|
|
|
primaryInterface = "enp6s0";
|
|
|
|
hostName = "miku";
|
2021-11-04 20:25:23 +00:00
|
|
|
offloading.builder.enable = true;
|
2021-11-01 20:33:21 +00:00
|
|
|
};
|
|
|
|
virtualisation = {
|
|
|
|
enable = true;
|
2022-02-02 11:08:36 +00:00
|
|
|
gaming.enable = true;
|
2021-11-01 20:33:21 +00:00
|
|
|
};
|
|
|
|
};
|
2021-11-05 16:53:43 +00:00
|
|
|
programs = {
|
|
|
|
adb.enable = true;
|
|
|
|
gnupg.agent.pinentryFlavor = "qt";
|
2022-04-23 11:22:03 +00:00
|
|
|
evolution.enable = true;
|
2021-11-05 16:53:43 +00:00
|
|
|
};
|
2021-11-01 20:33:21 +00:00
|
|
|
|
2021-11-09 19:17:34 +00:00
|
|
|
virtualisation = {
|
2022-02-18 19:18:56 +00:00
|
|
|
#podman = {
|
|
|
|
# enable = true;
|
|
|
|
# dockerCompat = true;
|
|
|
|
#};
|
2021-11-09 19:17:34 +00:00
|
|
|
};
|
|
|
|
|
2021-11-01 20:33:21 +00:00
|
|
|
boot = {
|
|
|
|
extraModprobeConfig = ''
|
2021-08-31 16:01:29 +00:00
|
|
|
options kvm_amd nested=1
|
|
|
|
options vfio-pci ids=1002:67df,1002:aaf0
|
|
|
|
'';
|
2021-11-01 20:33:21 +00:00
|
|
|
initrd = {
|
2022-02-02 11:08:36 +00:00
|
|
|
availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" "amdgpu" "vendor-reset" ];
|
2021-11-01 20:33:21 +00:00
|
|
|
kernelModules = [
|
|
|
|
"amdgpu" # GPU (duh)
|
|
|
|
"kvm-amd" "vfio_virqfd" "vfio_pci" "vfio_iommu_type1" "vfio" # Virt
|
|
|
|
"uinput" # key-mapper
|
2022-02-02 11:08:36 +00:00
|
|
|
"vendor-reset"
|
2021-10-22 19:40:21 +00:00
|
|
|
];
|
2021-07-29 20:21:51 +00:00
|
|
|
};
|
2021-11-01 20:33:21 +00:00
|
|
|
kernelParams = [
|
|
|
|
"amd_iommu=on"
|
2022-02-14 17:34:04 +00:00
|
|
|
"iommu=on"
|
2021-11-01 20:33:21 +00:00
|
|
|
"sysrq_always_enabled=1"
|
|
|
|
"kvm.ignore_msrs=1"
|
|
|
|
"kvm.report_ignored_msrs=N"
|
|
|
|
"fbcon=rotate:3"
|
|
|
|
"quiet"
|
2022-01-06 13:15:28 +00:00
|
|
|
"nopti"
|
|
|
|
"nospectre_v2"
|
|
|
|
"nospec"
|
2022-01-01 21:04:29 +00:00
|
|
|
"clocksource=tsc"
|
|
|
|
"tsc=reliable"
|
2022-02-14 17:34:04 +00:00
|
|
|
"pci=noaer"
|
2021-11-01 20:33:21 +00:00
|
|
|
];
|
|
|
|
|
2022-03-19 14:19:11 +00:00
|
|
|
extraModulePackages = [ pkgs.linuxPackages_xanmod.vendor-reset ];
|
2021-11-01 20:33:21 +00:00
|
|
|
|
|
|
|
# NOTE: A regression appears to have happend between 5.10 and 5.12
|
|
|
|
# which leads to the RX590 to have the fence fallback timer on
|
|
|
|
# sdma0 time out (whatever this means). Maybe bisect?
|
2022-03-19 14:19:11 +00:00
|
|
|
kernelPackages = pkgs.linuxPackages_xanmod;
|
2021-11-01 20:33:21 +00:00
|
|
|
};
|
|
|
|
services = {
|
|
|
|
ratbagd.enable = true;
|
|
|
|
flatpak.enable = true;
|
2022-02-02 14:55:38 +00:00
|
|
|
#etesync-dav.enable = true;
|
2021-11-01 20:33:21 +00:00
|
|
|
connman.extraConfig = ''
|
2021-09-11 18:37:49 +00:00
|
|
|
WriteResolvConf=false
|
|
|
|
'';
|
2021-11-01 20:33:21 +00:00
|
|
|
xserver = {
|
|
|
|
enable = true;
|
|
|
|
layout = "de";
|
|
|
|
libinput.enable = true;
|
2021-08-31 16:01:29 +00:00
|
|
|
};
|
2022-02-18 19:18:56 +00:00
|
|
|
earlyoom.enable = lib.mkForce false;
|
2021-11-01 20:33:21 +00:00
|
|
|
};
|
2021-12-06 12:39:37 +00:00
|
|
|
|
2022-02-02 11:08:36 +00:00
|
|
|
hardware = {
|
|
|
|
opentabletdriver.enable = true;
|
|
|
|
};
|
|
|
|
|
2021-11-04 14:11:46 +00:00
|
|
|
# TODO: Move into modules
|
2022-02-02 11:08:36 +00:00
|
|
|
systemd = {
|
|
|
|
services = {
|
|
|
|
enable-vendor-reset = {
|
|
|
|
wantedBy = [ "default.target" ];
|
|
|
|
script = ''
|
|
|
|
echo "device_specific" > /sys/bus/pci/devices/0000:01:00.0/reset_method
|
|
|
|
'';
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "simple";
|
|
|
|
};
|
2021-08-07 15:26:11 +00:00
|
|
|
};
|
2021-11-04 14:11:46 +00:00
|
|
|
};
|
2022-02-02 11:08:36 +00:00
|
|
|
user.services = {
|
|
|
|
replaysorcery-kms = {
|
|
|
|
description = "An open-source, instant-replay solution for Linux; KMS service";
|
|
|
|
#wantedBy = [ "default.target" ];
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "simple";
|
|
|
|
ExecStart = "${pkgs.replaysorcery}/bin/replay-sorcery kms-service";
|
|
|
|
Restart = "always";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
replaysorcery = {
|
|
|
|
description = "An open-source, instant-replay solution for Linux";
|
|
|
|
#wantedBy = [ "default.target" ];
|
|
|
|
requires = [ "replaysorcery-kms.service" ];
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "simple";
|
|
|
|
ExecStart = "${pkgs.replaysorcery}/bin/replay-sorcery";
|
|
|
|
Restart = "always";
|
|
|
|
};
|
2021-07-29 20:21:51 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|