summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-28 07:20:06 -0700
committerFuwn <[email protected]>2024-10-28 07:20:06 -0700
commit66aee595a1c230745614644261273615cbb53d5a (patch)
tree5c22fb41ea498468bdafd91b186928992440c1f7 /hosts
parentserver: add harmonia (diff)
downloadnixos-config-66aee595a1c230745614644261273615cbb53d5a.tar.xz
nixos-config-66aee595a1c230745614644261273615cbb53d5a.zip
core: allow mosh as optional
Diffstat (limited to 'hosts')
-rw-r--r--hosts/akashi/configuration.nix6
-rw-r--r--hosts/himeji/configuration.nix1
-rw-r--r--hosts/kansai/configuration.nix6
3 files changed, 11 insertions, 2 deletions
diff --git a/hosts/akashi/configuration.nix b/hosts/akashi/configuration.nix
index fa9e613..dd09c91 100644
--- a/hosts/akashi/configuration.nix
+++ b/hosts/akashi/configuration.nix
@@ -12,7 +12,11 @@
];
config = {
- modules.primaryUser = "ebisu";
+ modules = {
+ primaryUser = "ebisu";
+ mosh.enable = true;
+ };
+
system.stateVersion = "24.05";
networking.hostName = "akashi";
services.openssh.settings.PermitRootLogin = "yes";
diff --git a/hosts/himeji/configuration.nix b/hosts/himeji/configuration.nix
index 0d5fc9e..14296d8 100644
--- a/hosts/himeji/configuration.nix
+++ b/hosts/himeji/configuration.nix
@@ -14,6 +14,7 @@
modules = {
nix.extend = false;
+ mosh.enable = true;
containers = {
engine = "podman";
diff --git a/hosts/kansai/configuration.nix b/hosts/kansai/configuration.nix
index 31809bd..0d7f118 100644
--- a/hosts/kansai/configuration.nix
+++ b/hosts/kansai/configuration.nix
@@ -9,7 +9,11 @@
];
config = {
- modules.primaryUser = "ebisu";
+ modules = {
+ primaryUser = "ebisu";
+ mosh.enable = true;
+ };
+
networking.hostName = "kansai";
system.stateVersion = "24.05";
};