Compare commits

..

No commits in common. "0a1b0fbe519495865e28032192e4196f5c577e13" and "2894eaf108f1b3d030062e3d88543f70e763fab9" have entirely different histories.

2 changed files with 18 additions and 8 deletions

View File

@ -12,9 +12,9 @@
# ./exports.nix
./filesystems.nix
# ./services/archivebox.nix
./services/archivebox.nix
./services/calibre.nix
# ./services/ersatztv.nix
./services/ersatztv.nix
./services/jellyfin.nix
./services/komga.nix
./services/navidrome.nix
@ -26,7 +26,7 @@
networking = {
hostName = "challenger";
bridges.br0.interfaces = [ "ens18" ];
bridges.br0.interfaces = [ "enp5s0" ];
interfaces.br0.useDHCP = false;
interfaces.br0.ipv4.addresses = [
{ address = "192.168.10.161"; prefixLength = 24; }
@ -41,6 +41,7 @@
environment.variables = { EDITOR = "vim"; };
environment.systemPackages = with pkgs; [
zfs
ncdu
];
virtualisation.docker.enable = true;

View File

@ -1,22 +1,31 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/profiles/qemu-guest.nix")
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
boot.kernelParams = [
# https://wiki.gentoo.org/wiki/Ryzen#Ryzen_Threadripper
"processor.max_cstate=1"
"rcu_nocbs=0-11"
"idle=nomwait"
];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/7101364b-9056-4309-afeb-3c17b220684f";
{ device = "/dev/disk/by-uuid/ea31d0ea-2949-420a-99ea-7f77c4b7091e";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/FDCE-A287";
{ device = "/dev/disk/by-uuid/169B-94E2";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};