2024-11-02 17:19:40 -04:00
|
|
|
{ pkgs, config, unstable, nur, blender-bin, ... }:
|
2024-10-09 03:36:08 -04:00
|
|
|
{
|
2024-08-24 22:16:51 -04:00
|
|
|
users.users = {
|
2024-08-30 01:17:50 -04:00
|
|
|
jimbo = {
|
2024-08-24 22:16:51 -04:00
|
|
|
description = "Jimbo";
|
2024-10-15 02:40:43 -04:00
|
|
|
hashedPassword = config.secrets.jimboAccPass;
|
2024-08-24 22:16:51 -04:00
|
|
|
isNormalUser = true;
|
2024-10-15 22:41:19 -04:00
|
|
|
openssh.authorizedKeys.keys = [
|
2024-10-18 16:26:44 -04:00
|
|
|
(builtins.readFile ../../../../../hosts/firefly/id_ed25519.pub)
|
2024-10-28 17:06:52 -04:00
|
|
|
(builtins.readFile ../../../../../hosts/detritus/id_ed25519.pub)
|
|
|
|
|
|
|
|
(builtins.readFile ../../../../../hosts/shuttle/id_ed25519.pub)
|
2024-10-18 16:26:44 -04:00
|
|
|
(builtins.readFile ../../../../../hosts/lacros/id_ed25519.pub)
|
2024-10-20 19:34:00 -04:00
|
|
|
(builtins.readFile ../../../../../hosts/redmond/id_ed25519.pub)
|
2024-10-27 00:45:30 -04:00
|
|
|
(builtins.readFile ../../../../../hosts/treefruit/id_ed25519.pub)
|
2024-10-20 04:41:23 -04:00
|
|
|
|
|
|
|
(builtins.readFile ../../../../../hosts/cyberspark/id_ed25519.pub)
|
|
|
|
(builtins.readFile ../../../../../hosts/bomberman/id_ed25519.pub)
|
|
|
|
|
2024-10-28 17:06:52 -04:00
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJahAoF74BY6GCTsFkt1ADKaraFgJJozW1Y1aBTLK0j9 Pixel9"
|
2024-10-15 22:41:19 -04:00
|
|
|
];
|
2024-08-24 22:16:51 -04:00
|
|
|
extraGroups = [
|
|
|
|
"wheel"
|
|
|
|
"audio"
|
|
|
|
"video"
|
|
|
|
"input"
|
|
|
|
"disk"
|
|
|
|
"dialout"
|
|
|
|
"rtkit"
|
|
|
|
"kvm"
|
|
|
|
"libvirtd"
|
|
|
|
"qemu-libvirtd"
|
2024-09-02 18:30:02 -04:00
|
|
|
"nginx"
|
|
|
|
"minecraft"
|
2024-08-24 22:16:51 -04:00
|
|
|
"nfsShare"
|
|
|
|
];
|
|
|
|
uid = 1000;
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
};
|
|
|
|
};
|
2024-11-02 17:19:40 -04:00
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
useUserPackages = true;
|
|
|
|
backupFileExtension = "backup";
|
|
|
|
extraSpecialArgs = {
|
|
|
|
inherit
|
|
|
|
unstable
|
|
|
|
nur
|
|
|
|
blender-bin
|
|
|
|
;
|
|
|
|
};
|
|
|
|
users.jimbo = import ../../../../home;
|
|
|
|
};
|
2024-08-24 22:16:51 -04:00
|
|
|
}
|