From 8eb0bd9d2c2e39e5f07226d1a8e226514acd9c78 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Mon, 13 Nov 2023 17:31:53 +0530 Subject: hosts/mox: init --- hosts/mox/configuration.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 hosts/mox/configuration.nix (limited to 'hosts/mox/configuration.nix') diff --git a/hosts/mox/configuration.nix b/hosts/mox/configuration.nix new file mode 100644 index 0000000..6742cc3 --- /dev/null +++ b/hosts/mox/configuration.nix @@ -0,0 +1,18 @@ +{ pkgs, ... }: + +{ + imports = [ + ./hardware-configuration.nix + ./modules/network.nix + ../../common.nix + ]; + + services.openssh = { + enable = true; + settings.PasswordAuthentication = false; + }; + + boot.consoleLogLevel = 3; + networking.hostName = "mox"; + environment.systemPackages = with pkgs; [ tmux ]; +} -- cgit v1.2.3