Bare-bones Raspberry box config

This commit is contained in:
2026-01-11 16:23:26 +02:00
parent 77e40135c5
commit 2969bbabef
8 changed files with 179 additions and 1 deletions

16
hosts/oldbox/packages.nix Normal file
View File

@@ -0,0 +1,16 @@
{
config,
pkgs,
...
}: {
imports = [
../../modules/userapps/utils.nix
];
services.openssh.enable = true;
security.sudo = {
enable = true;
wheelNeedsPassword = false;
};
}