diff --git a/hosts/totsugeki/home-manager/development/default.nix b/hosts/totsugeki/home-manager/development/default.nix index a852890..01995d5 100644 --- a/hosts/totsugeki/home-manager/development/default.nix +++ b/hosts/totsugeki/home-manager/development/default.nix @@ -20,6 +20,7 @@ "https://codeberg.org".provider = "generic"; "https://git.rcia.dev".provider = "generic"; }; + init.defaultBranch = "main"; merge.tool = "nvim -d"; }; signing = { diff --git a/hosts/totsugeki/nixos/default.nix b/hosts/totsugeki/nixos/default.nix index b6e8f26..2f886c0 100644 --- a/hosts/totsugeki/nixos/default.nix +++ b/hosts/totsugeki/nixos/default.nix @@ -29,7 +29,7 @@ networking = { firewall = { enable = true; - allowedTCPPorts = [ 8000 42595 1420 ]; + allowedTCPPorts = [ 8000 42595 1420 7777 ]; allowedUDPPorts = [ 24642 ]; }; hostName = "totsugeki"; @@ -110,7 +110,7 @@ }; gvfs.enable = true; jellyfin = { - enable = false; + enable = true; openFirewall = true; }; pipewire = { diff --git a/hosts/totsugeki/nixos/filesystems.nix b/hosts/totsugeki/nixos/filesystems.nix index 53a9bbd..cf0d613 100644 --- a/hosts/totsugeki/nixos/filesystems.nix +++ b/hosts/totsugeki/nixos/filesystems.nix @@ -13,20 +13,15 @@ device = "/dev/disk/by-uuid/4bbd6139-7caa-4617-a94f-b185c5f6ca45"; fsType = "btrfs"; }; - #"/mnt/Datos" = { - # device = "/dev/disk/by-uuid/eb3b01e9-556f-4c9d-aa99-5495c1bc51e1"; - # fsType = "btrfs"; - # options = [ "user" "x-systemd.automount" "exec" ]; - #}; + "/mnt/Datos" = { + device = "/dev/disk/by-uuid/4d0a4a15-a962-420a-b641-37afbac65c3a"; + fsType = "btrfs"; + options = [ "user" "x-systemd.automount" "exec" ]; + }; "/mnt/Windows" = { - device = "/dev/disk/by-uuid/E290A87190A84DBB"; + device = "/dev/disk/by-uuid/491E4ED690A84DBB"; fsType = "ntfs"; options = [ "nofail" ]; }; - #"/mnt/Windows-Datos" = { - # device = "/dev/disk/by-uuid/1E58C48458C45BE1"; - # fsType = "ntfs"; - # options = [ "nofail" ]; - #}; }; }