mosh service

This commit is contained in:
Jill 2022-11-17 00:51:36 +01:00
parent 714e2a4240
commit e8c3c1412f
3 changed files with 13 additions and 9 deletions

View File

@ -321,6 +321,10 @@ in {
domain = "feditest.oat.zone"; domain = "feditest.oat.zone";
}; };
mosh = {
enable = true;
};
wireguard = { wireguard = {
enable = true; enable = true;
server = true; server = true;
@ -348,7 +352,7 @@ in {
staticSites = { staticSites = {
"aether.gay".dataDir = "/var/www/aether.gay"; "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"; #"dark-firepit.oat.zone".dataDir = "/var/www/dark-firepit.oat.zone";
"va11halla.oat.zone".dataDir = "/var/www/va11halla.oat.zone"; "va11halla.oat.zone".dataDir = "/var/www/va11halla.oat.zone";
"giger.yugoslavia.fishing".dataDir = "/var/www/giger.yugoslavia.fishing"; "giger.yugoslavia.fishing".dataDir = "/var/www/giger.yugoslavia.fishing";

View File

@ -12,9 +12,11 @@ in {
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
programs.hyprland = { #programs.hyprland = {
enable = true; # enable = true;
}; #};
# this was failing to build so i removed it. sorry!!!!!!
# -oat
home._.wayland.windowManager.hyprland = { home._.wayland.windowManager.hyprland = {
enable = true; enable = true;

View File

@ -12,11 +12,9 @@ in {
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
services = { programs.mosh = {
mosh = { enable = true;
enable = true; # why is there not more config options???? oh well
# why is there not more config options???? oh well
};
}; };
}; };
} }