fuck docker

- all my homies hate docker
- NixOS is my new friend now
This commit is contained in:
2026-03-17 19:36:46 -04:00
parent 8e81be5537
commit 829828c802
8 changed files with 23 additions and 42 deletions
+14
View File
@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
services.jellyfin = {
enable = true;
openFirewall = true;
};
environment.systemPackages = [
pkgs.jellyfin
pkgs.jellyfin-web
pkgs.jellyfin-ffmpeg
];
}
+2 -1
View File
@@ -66,7 +66,7 @@
# supported GPUs is at:
# https://github.com/NVIDIA/open-gpu-kernel-modules#compatible-gpus
# Only available from driver 515.43.04+
open = false;
open = true;
# Enable the Nvidia settings menu,
# accessible via `nvidia-settings`.
@@ -78,4 +78,5 @@
users.users.qmoran.packages = with pkgs; [ nvtopPackages.nvidia ];
hardware.nvidia-container-toolkit.enable = true;
virtualisation.docker.daemon.settings.features.cdi = true;
}