set up config for Earthmover and add sshd

This commit is contained in:
wo2wz 2025-07-20 17:03:54 -04:00
parent eb279f1f65
commit 64d2ffdeaa
6 changed files with 74 additions and 16 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
imports = [
@ -10,4 +10,11 @@
./swap.nix
./users.nix
];
environment = {
systemPackages = with pkgs; [ wget ];
# remove perl from default packages
defaultPackages = with pkgs; lib.mkForce [ rsync strace ];
};
}