From e8c3c1412f43261fc570533b0c6ed4e9111e413c Mon Sep 17 00:00:00 2001 From: "Jill \"oatmealine\" Monoids" Date: Thu, 17 Nov 2022 00:51:36 +0100 Subject: [PATCH] mosh service --- hosts/dark-firepit/default.nix | 6 +++++- modules/hyprland.nix | 8 +++++--- modules/services/mosh.nix | 8 +++----- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/hosts/dark-firepit/default.nix b/hosts/dark-firepit/default.nix index 206c3f2..30180e7 100644 --- a/hosts/dark-firepit/default.nix +++ b/hosts/dark-firepit/default.nix @@ -321,6 +321,10 @@ in { domain = "feditest.oat.zone"; }; + mosh = { + enable = true; + }; + wireguard = { enable = true; server = true; @@ -348,7 +352,7 @@ in { staticSites = { "aether.gay".dataDir = "/var/www/aether.gay"; - "dark-firepit.dev".dataDir = "/var/www/dark-firepit.dev"; + "dark-firepit.cloud".dataDir = "/var/www/dark-firepit.cloud"; #"dark-firepit.oat.zone".dataDir = "/var/www/dark-firepit.oat.zone"; "va11halla.oat.zone".dataDir = "/var/www/va11halla.oat.zone"; "giger.yugoslavia.fishing".dataDir = "/var/www/giger.yugoslavia.fishing"; diff --git a/modules/hyprland.nix b/modules/hyprland.nix index 325bf1c..ebc69be 100644 --- a/modules/hyprland.nix +++ b/modules/hyprland.nix @@ -12,9 +12,11 @@ in { }; config = mkIf cfg.enable { - programs.hyprland = { - enable = true; - }; + #programs.hyprland = { + # enable = true; + #}; + # this was failing to build so i removed it. sorry!!!!!! + # -oat home._.wayland.windowManager.hyprland = { enable = true; diff --git a/modules/services/mosh.nix b/modules/services/mosh.nix index e7c8659..6d78fe9 100644 --- a/modules/services/mosh.nix +++ b/modules/services/mosh.nix @@ -12,11 +12,9 @@ in { }; config = mkIf cfg.enable { - services = { - mosh = { - enable = true; - # why is there not more config options???? oh well - }; + programs.mosh = { + enable = true; + # why is there not more config options???? oh well }; }; }