This commit is contained in:
2023-11-19 04:46:19 +00:00
parent 595c067793
commit 36ca4f53f5
9 changed files with 162 additions and 116 deletions

23
modules/common.nix Normal file
View File

@@ -0,0 +1,23 @@
{ lib, pkgs, config, inputs, ... }: {
imports = [
./mnt-public.nix
./nomad.nix
./odroid-m1-setleds.nix
./odroid-m1.nix
];
environment.systemPackages = [
pkgs.git
pkgs.ncdu
];
services.openssh = {
enable = true;
settings.PermitRootLogin = "yes";
};
users.extraUsers.root.initialPassword = lib.mkForce "odroid";
}