bigbird: Add disabled Eric user; reorg users

This commit is contained in:
Chandler Swift 2025-06-06 17:52:58 -05:00
parent 6e1b26a12d
commit adab62337d
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
3 changed files with 14 additions and 1 deletions

View file

@ -5,8 +5,9 @@
# <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix> # <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix>
./hardware-configuration.nix ./hardware-configuration.nix
./backups.nix ./backups.nix
./kathe.nix
./smb.nix ./smb.nix
./users/eric.nix
./users/kathe.nix
]; ];
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default) # Use the extlinux boot loader. (NixOS wants to enable GRUB by default)

12
bigbird/users/eric.nix Normal file
View file

@ -0,0 +1,12 @@
{pkgs, ...}: {
# users.users.eric = {
# isNormalUser = true;
# description = "Eric Villnow";
# openssh.authorizedKeys.keys = [
# "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBKTAtIfDbYG2Wvwc0dmzXJXWwRnI1QFzFf7P9Txj9zo eric@vill.now"
# ];
# packages = with pkgs; [
# #
# ];
# };
}