diff --git a/home/linux/hyprland.nix b/home/linux/hyprland.nix index ab99f19f..03556e6c 100644 --- a/home/linux/hyprland.nix +++ b/home/linux/hyprland.nix @@ -31,7 +31,7 @@ source = "${pkgs.catppuccinThemes.hyprland}/themes/mocha.conf"; "render:explicit_sync" = true; monitor = [ - "${device.monitors.primary}, 2560x1440@360, 0x0, 1, transform, 0" + "${device.monitors.primary}, 2560x1440@360, 0x0, 1, transform, 0, cm, hdredid" "${device.monitors.secondary}, 2560x1440@170, -1440x-1120, 1, transform, 1" "${device.monitors.tertiary}, 2560x1440@170, 2560x-1120, 1, transform, 3" ]; diff --git a/nixos/ryu/services/zerotier.nix b/nixos/ryu/services/zerotier.nix index 1912d931..58e2e3b4 100644 --- a/nixos/ryu/services/zerotier.nix +++ b/nixos/ryu/services/zerotier.nix @@ -1,12 +1,24 @@ {config, ...}: { - sops = { - secrets."zerotier/api_key".owner = config.systemd.services.zeronsd-abfd31bd4766754d.serviceConfig.User; - }; - services .zerotierone = { + # sops = { + # secrets."zerotier/api_key".owner = config.systemd.services.zeronsd-abfd31bd4766754d.serviceConfig.User; + # }; + services.zerotierone = { enable = true; port = 9994; joinNetworks = [ "abfd31bd4766754d" ]; }; + # services.zeronsd = { + # servedNetworks = { + # abfd31bd4766754d = { + # settings = { + # log_level = "trace"; + # local_url = "http://127.0.0.1:9994"; + # domain = "zt.darksailor.dev"; + # token = config.sops.secrets."zerotier/api_key".path; + # }; + # }; + # }; + # }; }