From 425e169fb7b049e62015baee64f384b7e5c6c930 Mon Sep 17 00:00:00 2001 From: Cameron Reed Date: Sat, 13 Jan 2024 14:24:19 -0700 Subject: [PATCH] Enable Jellyfin and temporarily enable hyprland and add makemkv for ripping discs --- hosts/nixserver/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/nixserver/configuration.nix b/hosts/nixserver/configuration.nix index 35eff80..0cc9eb8 100755 --- a/hosts/nixserver/configuration.nix +++ b/hosts/nixserver/configuration.nix @@ -15,6 +15,7 @@ in { (common_dir + /bootloader/grub.nix) (common_dir + /users/users.nix) (common_dir + /login-manager/tuigreet.nix) + (common_dir + /desktop/hyprland.nix) ./minecraft.nix ./frp.nix @@ -73,6 +74,9 @@ in { kitty makemkv ]; + + # Also temporary + nixpkgs.config.allowUnfree = true; environment.shells = with pkgs; [ bash zsh ]; @@ -88,6 +92,8 @@ in { }; }; + # Enable Jellyfin + # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ];