diff options
| author | Fuwn <[email protected]> | 2024-11-06 08:03:32 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-11-06 08:03:32 -0800 |
| commit | 00d3d26ee778013b1aa95a9f7fc645975fbb3169 (patch) | |
| tree | c78eb1f5dc04399ef2b7c2a58ecc2e969f48688e /modules/pi/default.nix | |
| parent | lock: tsutsumi (diff) | |
| download | nixos-config-00d3d26ee778013b1aa95a9f7fc645975fbb3169.tar.xz nixos-config-00d3d26ee778013b1aa95a9f7fc645975fbb3169.zip | |
hosts: add hoka host and joint configuration
Diffstat (limited to 'modules/pi/default.nix')
| -rw-r--r-- | modules/pi/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/pi/default.nix b/modules/pi/default.nix new file mode 100644 index 0000000..410dbd9 --- /dev/null +++ b/modules/pi/default.nix @@ -0,0 +1,15 @@ +{ + lib, + secrets, + ... +}: +{ + imports = [ + ./users.nix + ./zram.nix + ]; + + time.timeZone = secrets.i18n.timezone; + services.openssh.settings.PermitRootLogin = "prohibit-password"; + networking.firewall.enable = lib.mkForce false; +} |