machine-config/bigbird/kathe.nix
Chandler Swift 554d5f952b
bigbird: Pass pkgs param for kathe
I'm not entirely sure how this made it past testing!
2024-11-13 00:43:48 -06:00

13 lines
304 B
Nix

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