mirror of
https://github.com/sstent/nixos-cluster.git
synced 2026-01-26 07:01:48 +00:00
23 lines
452 B
Nix
23 lines
452 B
Nix
{ 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";
|
|
} |