diff options
Diffstat (limited to 'hosts/mox/configuration.nix')
-rw-r--r-- | hosts/mox/configuration.nix | 18 |
1 files changed, 18 insertions, 0 deletions
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 ]; +} |