Initial framework: reusable modules, lib, pkgs, overlays, scripts, sample environment

This commit is contained in:
2026-05-10 19:06:58 +02:00
commit c53d997d07
32 changed files with 1339 additions and 0 deletions
@@ -0,0 +1,14 @@
{ config, pkgs, lib, ... }:
{
# Sample user configuration — adapt to your needs
users.users.alice = {
isNormalUser = true;
description = "Alice (sample user)";
extraGroups = [ "wheel" ]; # Enable sudo access
openssh.authorizedKeys.keys = [
# Replace with your own SSH public key
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM7... alice@example"
];
};
}