refactors

This commit is contained in:
Henry Hiles 2025-10-18 13:55:25 -04:00
commit eb43deac44
No known key found for this signature in database
6 changed files with 75 additions and 86 deletions

16
clients/nova/ava.nix Normal file
View file

@ -0,0 +1,16 @@
{ config, lib, ... }:
{
users = {
mutableUsers = lib.mkForce true;
users.ava = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcXzWUeVwJN7iPxMT/1lhJySY4t6Z2/fH/GHVuzQFr6 cardno:32_241_564"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBnstd9HyyIjfXWfGymWDcRlK9nZuqgTIcueiqPUDaQ star@starforge"
];
hashedPasswordFile = config.age.secrets."initialFloriPassword.age".path;
description = "Flori Ava Star";
extraGroups = [ "wheel" ];
};
};
}