Compare commits
2 Commits
85a567a705
...
5a2c7aa559
Author | SHA1 | Date |
---|---|---|
Tim Van Baak | 5a2c7aa559 | |
Tim Van Baak | dbc53ec73f |
|
@ -6,10 +6,9 @@
|
|||
./jellyfin.nix
|
||||
];
|
||||
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
device = "/dev/sda";
|
||||
};
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
beatific.hostName = "backyard";
|
||||
beatific.defaults.tvbSync = false;
|
||||
|
|
|
@ -8,18 +8,23 @@
|
|||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/798089ca-f249-431d-aa08-65909b85a184";
|
||||
{ device = "/dev/disk/by-uuid/75addc56-2a0d-431e-a0c5-f6ee0e370e61";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/610F-1EB7";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[ { device = "/dev/disk/by-uuid/5d55f9b7-cde3-403d-9c91-61c4b68c71f9"; }
|
||||
[ { device = "/dev/disk/by-uuid/cc464bb4-e1c8-46c0-adbb-ea1a3cfa5b03"; }
|
||||
];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
|
@ -30,6 +35,5 @@
|
|||
# networking.interfaces.eno1.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
||||
|
|
|
@ -13,13 +13,13 @@
|
|||
default = true;
|
||||
locations."/".return = "444";
|
||||
};
|
||||
"jellyfin" = {
|
||||
"jellyfin.home.ktvb.site" = {
|
||||
listen = [
|
||||
# Available on the local network (host managed by router)
|
||||
{ addr = "jellyfin.backyard.lan"; port = 80; }
|
||||
# Available by name on beatific (host managed by beatific module)
|
||||
{ addr = "jellyfin.backyard.home"; port = 80; }
|
||||
# Available by port on beatific until I solve DNS for non-NixOS hosts
|
||||
# The router should have a static lease for this IP and a host entry naming it
|
||||
{ addr = "192.168.1.236"; port = 80; }
|
||||
# beatific module sends traffic over the vpn
|
||||
{ addr = "10.22.20.8"; port = 80; }
|
||||
# Also available on an extra port in case of port 80 troubles
|
||||
{ addr = "10.22.20.8"; port = 8096; }
|
||||
];
|
||||
locations."/".extraConfig = ''
|
||||
|
|
Loading…
Reference in New Issue