nixos-config/hosts/ytnix/default.nix

360 lines
7.9 KiB
Nix
Raw Normal View History

2024-11-22 00:58:04 -05:00
{
2024-12-12 23:35:10 -05:00
config,
pkgs,
lib,
2024-12-27 21:03:55 -05:00
inputs,
2024-12-12 23:35:10 -05:00
...
2024-12-19 02:32:58 -05:00
}:
{
2024-12-12 23:35:10 -05:00
imports = [
./hardware-configuration.nix
2024-12-13 22:26:27 -05:00
../common.nix
2024-12-27 21:03:55 -05:00
{
disabledModules = [ "services/backup/borgbackup.nix" ];
2024-12-27 21:03:55 -05:00
}
(inputs.nixpkgs-borg + "/nixos/modules/services/backup/borgbackup.nix")
2024-12-12 23:35:10 -05:00
];
2024-12-16 22:17:39 -05:00
sops.age.keyFile = "/root/.config/sops/age/keys.txt";
sops.secrets = {
2024-12-16 22:17:39 -05:00
"borg/rsyncnet" = {
sopsFile = ../../secrets/borg/yt.yaml;
};
"services/ntfy" = {
sopsFile = ../../secrets/services/ntfy.yaml;
};
2024-12-16 22:17:39 -05:00
"wireguard/private" = {
sopsFile = ../../secrets/wireguard/yt.yaml;
};
2024-12-16 22:17:39 -05:00
"wireguard/psk" = {
sopsFile = ../../secrets/wireguard/yt.yaml;
};
2024-12-20 18:43:11 -05:00
"rsyncnet/id_ed25519" = {
sopsFile = ../../secrets/de3911/yt.yaml;
};
2024-12-25 02:32:01 -05:00
"newsboat/miniflux" = {
sopsFile = ../../secrets/newsboat.yaml;
owner = "yt";
};
};
2024-11-23 21:41:28 -05:00
2024-11-26 01:09:13 -05:00
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
2024-11-29 20:12:35 -05:00
tmp.cleanOnBoot = true;
2024-11-26 01:09:13 -05:00
kernelPackages = pkgs.linuxPackages_latest;
2024-11-28 01:49:43 -05:00
extraModulePackages = with config.boot.kernelPackages; [
rtl8821ce
];
2024-11-26 01:09:13 -05:00
};
2024-11-22 00:58:04 -05:00
2024-11-25 20:10:53 -05:00
networking = {
hostName = "ytnix";
wireless.iwd = {
enable = true;
settings = {
Rank = {
# disable 2.4 GHz cause i have a shitty wireless card
# that interferes with bluetooth otherwise
BandModifier2_4GHz = 0.0;
};
2024-11-22 00:58:04 -05:00
};
};
2024-11-25 20:10:53 -05:00
networkmanager = {
enable = true;
dns = "none";
wifi.backend = "iwd";
};
2024-12-19 02:32:58 -05:00
nameservers = [
"31.59.129.225"
"2a0f:85c1:840:2bfb::1"
];
2024-11-25 20:10:53 -05:00
resolvconf.enable = true;
firewall = {
2024-12-19 02:32:58 -05:00
allowedUDPPorts = [ 51820 ]; # for wireguard
trustedInterfaces = [ "wg0" ];
2024-11-25 20:10:53 -05:00
};
2024-11-22 00:58:04 -05:00
};
2024-11-25 20:10:53 -05:00
programs.nm-applet.enable = true;
2024-11-22 00:58:04 -05:00
security.rtkit.enable = true;
2024-11-22 00:58:04 -05:00
services.pipewire = {
enable = true;
pulse.enable = true;
alsa.enable = true;
alsa.support32Bit = true;
2024-11-25 20:10:53 -05:00
wireplumber.extraConfig.bluetoothEnhancements = {
"wireplumber.settings" = {
"bluetooth.autoswitch-to-headset-profile" = false;
};
"monitor.bluez.properties" = {
"bluez5.enable-sbc-xq" = true;
"bluez5.enable-msbc" = true;
"bluez5.enable-hw-volume" = true;
2024-12-19 02:32:58 -05:00
"bluez5.roles" = [
"a2dp_sink"
"a2dp_source"
];
2024-11-25 20:10:53 -05:00
};
};
2024-12-15 21:14:57 -05:00
# https://wiki.archlinux.org/title/Bluetooth_headset#Connecting_works,_sound_plays_fine_until_headphones_become_idle,_then_stutters
wireplumber.extraConfig.disableSuspend = {
"monitor.bluez.rules" = {
matches = [
{
"node.name" = "bluez_output.*";
}
];
2024-12-16 11:40:19 -05:00
};
actions = {
2024-12-15 21:14:57 -05:00
update-props = {
"session.suspend-timeout-seconds" = 0;
};
2024-12-16 11:40:19 -05:00
};
2024-12-15 21:14:57 -05:00
};
2024-11-22 00:58:04 -05:00
};
services.libinput.enable = true;
users.users.yt = {
isNormalUser = true;
2024-12-19 02:32:58 -05:00
extraGroups = [
"wheel"
"libvirtd"
"docker"
];
2024-11-22 00:58:04 -05:00
};
environment.systemPackages = with pkgs; [
tmux
vim
wget
neovim
2024-12-09 02:14:11 -05:00
git
python3
wl-clipboard
mako
2024-11-22 00:58:04 -05:00
tree
kitty
borgbackup
brightnessctl
alsa-utils
nixd
bluetuith
libimobiledevice
2024-11-22 01:39:38 -05:00
pass-wayland
2024-11-22 19:18:02 -05:00
htop
file
2024-11-23 14:40:08 -05:00
dnsutils
age
compsize
wireguard-tools
2024-11-23 20:47:43 -05:00
traceroute
2024-11-23 21:41:28 -05:00
sops
restic
2024-12-16 02:07:54 -05:00
haskell-language-server
ghc
2024-11-22 00:58:04 -05:00
];
2024-12-08 14:19:35 -05:00
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
};
2024-11-25 20:10:53 -05:00
2024-11-22 00:58:04 -05:00
system.stateVersion = "24.05";
services.gnome.gnome-keyring.enable = true;
programs.gnupg.agent.enable = true;
2024-12-04 22:53:37 -05:00
services.displayManager.defaultSession = "sway";
2024-11-22 00:58:04 -05:00
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
2024-11-22 19:18:02 -05:00
# security.sudo.wheelNeedsPassword = false;
2024-11-22 00:58:04 -05:00
fonts.packages = with pkgs; [
nerd-fonts.roboto-mono
2024-11-22 00:58:04 -05:00
];
2024-11-28 01:49:43 -05:00
hardware.enableAllFirmware = true;
2024-11-22 00:58:04 -05:00
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true;
2024-12-04 22:53:37 -05:00
programs.sway.enable = true;
2024-11-22 00:58:04 -05:00
services.borgbackup.jobs.ytnixRsync = {
2024-12-30 14:21:28 -05:00
# systemd.timer(5)
persistentTimer = true;
2024-12-19 02:32:58 -05:00
paths = [
"/root"
"/home"
"/var/lib"
"/opt"
"/etc"
];
exclude = [
"**/.cache"
"**/node_modules"
"**/cache"
"**/Cache"
"/var/lib/docker"
2024-12-12 15:53:17 -05:00
"/var/lib/private/ollama"
2024-12-29 01:11:50 -05:00
"/var/lib/libvirt"
2024-12-29 02:11:24 -05:00
"/var/lib/systemd"
"/home/**/Downloads"
"**/.rustup"
2024-12-29 13:20:25 -05:00
"**/.cargo"
"**/.docker"
"**/borg"
2024-12-29 12:34:22 -05:00
"/home/yt/fun"
2024-12-28 23:35:59 -05:00
"/home/yt/.local/share/Steam"
2024-12-29 13:20:25 -05:00
"**/.wine"
2024-12-29 12:34:22 -05:00
"/home/yt/Games"
];
repo = "de3911@de3911.rsync.net:borg/yt";
encryption = {
mode = "repokey-blake2";
2024-12-16 22:17:39 -05:00
passCommand = ''cat ${config.sops.secrets."borg/rsyncnet".path}'';
};
environment = {
2024-12-20 18:43:11 -05:00
BORG_RSH = ''ssh -i ${config.sops.secrets."rsyncnet/id_ed25519".path}'';
BORG_REMOTE_PATH = "borg1";
2024-12-20 18:19:18 -05:00
BORG_EXIT_CODES = "modern";
};
2024-12-28 03:41:53 -05:00
compression = "auto,zstd,8";
2024-12-28 18:11:31 -05:00
startAt = "hourly";
2024-12-20 18:54:20 -05:00
extraCreateArgs = [
"--stats"
"-x"
];
# warnings are often not that serious
failOnWarnings = false;
postHook = ''
2024-12-19 02:32:58 -05:00
${pkgs.curl}/bin/curl -u $(cat ${
config.sops.secrets."services/ntfy".path
}) -d "ytnixRsync: backup completed with exit code: $exitStatus
2024-12-09 02:14:11 -05:00
$(journalctl -u borgbackup-job-ytnixRsync.service|tail -n 5)" \
https://ntfy.cything.io/chunk
'';
2024-12-26 05:26:31 -05:00
2024-12-26 23:40:33 -05:00
prune.keep = {
2024-12-29 20:32:53 -05:00
within = "2d";
2024-12-28 18:11:31 -05:00
daily = 365;
2024-12-26 23:40:33 -05:00
};
extraPruneArgs = [ "--stats" ];
};
2024-12-09 02:14:11 -05:00
2024-11-25 20:10:53 -05:00
services.btrbk.instances.local = {
onCalendar = "hourly";
settings = {
2024-12-30 13:15:23 -05:00
snapshot_preserve = "7d";
2024-11-25 20:10:53 -05:00
snapshot_preserve_min = "2d";
2024-12-30 13:15:23 -05:00
target_preserve = "*d";
target_preserve_min = "no";
target = "/mnt/external/btr_backup/ytnix";
stream_compress = "zstd";
2024-11-25 20:10:53 -05:00
snapshot_dir = "/snapshots";
2024-11-22 19:18:02 -05:00
subvolume = {
2024-12-19 02:32:58 -05:00
"/home" = { };
"/" = { };
2024-11-22 19:18:02 -05:00
};
};
};
# only create snapshots automatically. backups are triggered manually
2024-12-26 23:40:33 -05:00
systemd.services."btrbk-local".serviceConfig.ExecStart =
lib.mkForce "${pkgs.btrbk}/bin/btrbk -c /etc/btrbk/local.conf snapshot";
2024-11-22 02:09:31 -05:00
2024-12-28 17:56:18 -05:00
programs.steam = {
enable = true;
extest.enable = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
hardware.steam-hardware.enable = true;
2024-11-22 02:09:31 -05:00
2024-11-22 19:18:02 -05:00
services.logind = {
lidSwitch = "hibernate";
2024-11-23 20:47:43 -05:00
powerKey = "hibernate";
2024-11-22 02:09:31 -05:00
};
2024-11-22 20:46:58 -05:00
xdg.mime.defaultApplications = {
"application/pdf" = "okular.desktop";
"image/*" = "gwenview.desktop";
2024-12-08 14:19:35 -05:00
"*/html" = "chromium-browser.desktop";
2024-11-22 20:46:58 -05:00
};
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
# preference changes don't work in thunar without this
programs.xfconf.enable = true;
# mount, trash and stuff in thunar
services.gvfs.enable = true;
# thumbnails in thunar
2024-12-09 02:14:11 -05:00
services.tumbler.enable = true;
2024-11-23 14:40:08 -05:00
2024-11-26 01:53:01 -05:00
virtualisation = {
libvirtd.enable = true;
docker.enable = true;
};
2024-11-23 14:40:08 -05:00
programs.virt-manager.enable = true;
2024-11-26 13:31:57 -05:00
services.usbmuxd.enable = true;
2024-11-26 17:27:35 -05:00
programs.nix-ld.enable = true;
programs.evolution.enable = true;
xdg.portal = {
enable = true;
wlr.enable = true;
};
2024-12-07 03:29:15 -05:00
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
];
};
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
intel-media-driver
intel-media-sdk
];
};
2024-12-12 15:53:17 -05:00
services.ollama.enable = true;
2024-12-14 18:22:05 -05:00
# wireguard setup
networking.wg-quick.interfaces.wg0 = {
2024-12-28 22:45:53 -05:00
autostart = false;
2024-12-19 02:32:58 -05:00
address = [
"10.0.0.2/24"
"fdc9:281f:04d7:9ee9::2/64"
];
2024-12-16 22:17:39 -05:00
privateKeyFile = config.sops.secrets."wireguard/private".path;
peers = [
{
publicKey = "a16/F/wP7HQIUtFywebqPSXQAktPsLgsMLH9ZfevMy0=";
2024-12-19 02:32:58 -05:00
allowedIPs = [
"0.0.0.0/0"
"::/0"
];
endpoint = "31.59.129.225:51820";
persistentKeepalive = 25;
2024-12-16 22:17:39 -05:00
presharedKeyFile = config.sops.secrets."wireguard/psk".path;
}
];
2024-12-14 18:22:05 -05:00
};
2024-12-19 18:29:19 -05:00
services.trezord.enable = true;
2024-11-22 01:39:38 -05:00
}