mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 23:20:32 +01:00
95 lines
2.1 KiB
Nix
95 lines
2.1 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
users.users.marie = {
|
|
isNormalUser = true;
|
|
packages = with pkgs; [
|
|
git
|
|
wget
|
|
];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN0mGd4YS4f3Wy+a4PBXbie42C5Qo4H0uWsN7joaK27h marie@titania"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFckmWImlMVsCbu5M1lsLtzxhBxrQhTQHYrKWJYDOHr5 marie@oberon"
|
|
];
|
|
};
|
|
users.users.mo = {
|
|
isNormalUser = true;
|
|
packages = with pkgs; [
|
|
git
|
|
wget
|
|
];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFjRrLI5mBnoIMcjq2WGPCGuKYLwS7uhgI6F0T5ojp6n moe@martini.moe"
|
|
];
|
|
};
|
|
|
|
users.users.ellie = {
|
|
isNormalUser = true;
|
|
packages = with pkgs; [
|
|
git
|
|
wget
|
|
];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKA4+3PkFptATzrWncxdj63SqZ747cDb8TqmdQFugvW7 ellie@card"
|
|
];
|
|
};
|
|
|
|
users.users.brodo = {
|
|
isNormalUser = true;
|
|
packages = with pkgs; [
|
|
git
|
|
wget
|
|
];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAZqFlE49ln4iAcVNzUaTXbFW6SA8Wwxl1hiwUkegUfy julian@example.com"
|
|
];
|
|
};
|
|
|
|
users.users.juvi = {
|
|
isNormalUser = true;
|
|
packages = with pkgs; [
|
|
git
|
|
wget
|
|
];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGoWyG1XphHZJd9qJwv2c4NvRQpNMN7Q7o/NLRNKsn/j danb@ha.si"
|
|
];
|
|
};
|
|
|
|
users.users.arrbyte = {
|
|
isNormalUser = true;
|
|
packages = with pkgs; [
|
|
git
|
|
wget
|
|
];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFaGk8I5reIyZSXjKorcr5gbLnaGWP44dcw9rDL6sv/F arrbyten macht frei"
|
|
];
|
|
};
|
|
|
|
users.users.karl = {
|
|
isNormalUser = true;
|
|
packages = with pkgs; [
|
|
git
|
|
wget
|
|
];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGgVvtKzUxJ38TA0Xg4kUJYJY3a2MWZjbGZDYi/kiMWZ karl@Karl-Laptop"
|
|
];
|
|
};
|
|
|
|
users.users.kenzo = {
|
|
isNormalUser = true;
|
|
packages = with pkgs; [
|
|
git
|
|
wget
|
|
];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII0QdrpIcknqHvn0os4+ANcwMEkLu7VBOClEL0+nvTZj Kenzo"
|
|
];
|
|
};
|
|
}
|