2022-02-17 10:16:09 +01:00
|
|
|
# Standard NixOS users for TVL machines, as well as configuration that
|
|
|
|
# should following along when they are added to a machine.
|
|
|
|
{ depot, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
users = {
|
|
|
|
users.tazjin = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [ "git" "wheel" ];
|
|
|
|
shell = pkgs.fish;
|
|
|
|
openssh.authorizedKeys.keys = depot.users.tazjin.keys.all;
|
|
|
|
};
|
|
|
|
|
|
|
|
users.lukegb = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [ "git" "wheel" ];
|
|
|
|
openssh.authorizedKeys.keys = depot.users.lukegb.keys.all;
|
|
|
|
};
|
|
|
|
|
|
|
|
users.grfn = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [ "git" "wheel" ];
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
depot.users.grfn.keys.whitby
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
users.edef = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [ "git" ];
|
|
|
|
openssh.authorizedKeys.keys = depot.users.edef.keys.all;
|
|
|
|
};
|
|
|
|
|
|
|
|
users.qyliss = {
|
|
|
|
isNormalUser = true;
|
2023-02-08 18:57:49 +01:00
|
|
|
description = "Alyssa Ross";
|
2022-02-17 10:16:09 +01:00
|
|
|
extraGroups = [ "git" ];
|
|
|
|
openssh.authorizedKeys.keys = depot.users.qyliss.keys.all;
|
|
|
|
};
|
|
|
|
|
|
|
|
users.eta = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [ "git" ];
|
|
|
|
openssh.authorizedKeys.keys = depot.users.eta.keys.whitby;
|
|
|
|
};
|
|
|
|
|
|
|
|
users.cynthia = {
|
|
|
|
isNormalUser = true; # I'm normal OwO :3
|
|
|
|
extraGroups = [ "git" ];
|
|
|
|
openssh.authorizedKeys.keys = depot.users.cynthia.keys.all;
|
|
|
|
};
|
|
|
|
|
|
|
|
users.firefly = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [ "git" ];
|
|
|
|
openssh.authorizedKeys.keys = depot.users.firefly.keys.whitby;
|
|
|
|
};
|
|
|
|
|
|
|
|
users.sterni = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [ "git" "wheel" ];
|
|
|
|
openssh.authorizedKeys.keys = depot.users.sterni.keys.all;
|
|
|
|
};
|
|
|
|
|
|
|
|
users.flokli = {
|
|
|
|
isNormalUser = true;
|
2023-08-21 13:01:47 +02:00
|
|
|
extraGroups = [ "git" "wheel" ];
|
2022-02-17 10:16:09 +01:00
|
|
|
openssh.authorizedKeys.keys = depot.users.flokli.keys.all;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-03-31 15:52:37 +02:00
|
|
|
programs.fish.enable = true;
|
|
|
|
|
2022-02-17 10:16:09 +01:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
alacritty.terminfo
|
|
|
|
foot.terminfo
|
2022-09-26 19:33:05 +02:00
|
|
|
rxvt-unicode-unwrapped.terminfo
|
2023-03-31 15:52:37 +02:00
|
|
|
kitty.terminfo
|
2022-02-17 10:16:09 +01:00
|
|
|
];
|
|
|
|
}
|