nixos-config/nix/hosts/ytnix/default.nix

301 lines
6.5 KiB
Nix
Raw Normal View History

2024-11-22 00:58:04 -05:00
{
2024-12-12 23:35:10 -05:00
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
./hardware-configuration.nix
];
2024-12-13 11:27:01 -05:00
nix = {
2024-12-12 23:35:10 -05:00
settings = {
experimental-features = "nix-command flakes";
auto-optimise-store = true;
flake-registry = "";
};
channel.enable = false;
optimise = {
automatic = true;
2024-12-13 11:28:27 -05:00
dates = ["03:45"];
2024-12-12 23:35:10 -05:00
};
gc = {
automatic = true;
dates = "19:00";
persistent = true;
options = "--delete-older-than 60d";
};
};
2024-11-22 00:58:04 -05:00
2024-12-13 11:27:01 -05:00
sops.defaultSopsFile = ./secrets.yaml;
2024-11-23 21:41:28 -05:00
sops.defaultSopsFormat = "yaml";
sops.age.keyFile = "/root/.config/sops/age/keys.txt";
sops.secrets = {
2024-12-13 11:28:27 -05:00
"borg/yt" = {};
"azure" = {};
"ntfy" = {};
};
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";
# nftables.enable = true;
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-13 11:28:27 -05:00
nameservers = ["127.0.0.1" "::1"];
2024-11-25 20:10:53 -05:00
resolvconf.enable = true;
firewall = {
2024-12-13 11:28:27 -05:00
trustedInterfaces = ["wgnord"];
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
time.timeZone = "America/Toronto";
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-13 11:28:27 -05:00
"bluez5.roles" = ["a2dp_sink" "a2dp_source"];
2024-11-25 20:10:53 -05:00
};
};
2024-11-22 00:58:04 -05:00
};
services.libinput.enable = true;
users.users.yt = {
isNormalUser = true;
2024-12-13 11:28:27 -05:00
extraGroups = ["wheel" "libvirtd" "docker"];
2024-11-22 00:58:04 -05:00
shell = pkgs.zsh;
};
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
veracrypt
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
wgnord
wireguard-tools
2024-11-23 20:47:43 -05:00
traceroute
2024-11-23 21:41:28 -05:00
sops
restic
2024-11-22 00:58:04 -05:00
];
2024-12-08 14:19:35 -05:00
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
ANKI_WAYLAND = "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;
};
programs.zsh.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-13 11:28:27 -05:00
paths = ["/root" "/home" "/var/lib" "/var/log" "/opt" "/etc"];
exclude = [
"**/.cache"
"**/node_modules"
"**/cache"
"**/Cache"
"/var/lib/docker"
2024-12-12 15:53:17 -05:00
"/var/lib/private/ollama"
"/home/**/Downloads"
"**/.steam"
"**/.rustup"
"**/.docker"
"**/borg"
];
repo = "de3911@de3911.rsync.net:borg/yt";
encryption = {
mode = "repokey-blake2";
passCommand = "cat /run/secrets/borg/yt";
};
environment = {
BORG_RSH = "ssh -i /home/yt/.ssh/id_ed25519";
BORG_REMOTE_PATH = "borg1";
};
compression = "auto,zstd";
startAt = "daily";
2024-12-13 11:28:27 -05:00
extraCreateArgs = ["--stats"];
# warnings are often not that serious
failOnWarnings = false;
postHook = ''
2024-12-09 02:14:11 -05:00
${pkgs.curl}/bin/curl -u $(cat /run/secrets/ntfy) -d "ytnixRsync: backup completed with exit code: $exitStatus
$(journalctl -u borgbackup-job-ytnixRsync.service|tail -n 5)" \
https://ntfy.cything.io/chunk
'';
};
2024-12-09 02:14:11 -05:00
2024-11-25 20:10:53 -05:00
services.btrbk.instances.local = {
onCalendar = "hourly";
settings = {
snapshot_preserve = "2w";
2024-11-25 20:10:53 -05:00
snapshot_preserve_min = "2d";
snapshot_dir = "/snapshots";
2024-11-22 19:18:02 -05:00
subvolume = {
2024-12-13 11:28:27 -05:00
"/home" = {};
"/" = {};
2024-11-22 19:18:02 -05:00
};
};
};
2024-11-22 02:09:31 -05:00
programs.steam.enable = true;
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-25 20:10:53 -05:00
services.dnscrypt-proxy2 = {
2024-11-23 20:47:43 -05:00
enable = true;
2024-11-25 20:10:53 -05:00
settings = {
ipv6_servers = true;
require_dnssec = true;
sources.public-resolvers = {
urls = [
"https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/public-resolvers.md"
"https://download.dnscrypt.info/resolvers-list/v3/public-resolvers.md"
];
cache_file = "/var/lib/dnscrypt-proxy2/public-resolvers.md";
minisign_key = "RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3";
};
2024-11-23 20:47:43 -05:00
};
};
2024-11-26 01:09:13 -05:00
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;
# this is true by default and mutually exclusive with
# programs.nix-index
programs.command-not-found.enable = false;
programs.nix-index = {
enable = true;
enableZshIntegration = 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-11-22 01:39:38 -05:00
}