bigbird: Add initial nas configuration

This commit is contained in:
Chandler Swift 2024-11-11 22:37:24 -06:00
parent a367be6426
commit a89a4b9b4a
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
5 changed files with 175 additions and 0 deletions

12
bigbird/kathe.nix Normal file
View file

@ -0,0 +1,12 @@
{
users.users.kathe = {
isNormalUser = true;
description = "Käthe Swift";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMJFkFEKuT9v9B9ynAf5QfLZF54jWhzEnQIeW2kQWKJ+ kathe.t.swift@gmail.com"
];
packages = with pkgs; [
#
];
};
}