nixos-configuration/vinzenz-pc2.nix
2023-09-10 14:30:29 +02:00

25 lines
468 B
Nix

{...}: {
imports = [
./modules
(import ./hardware "vinzenz-pc2")
];
config = {
my = {
kde.enable = true;
home = {
vinzenz.enable = true;
ronja.enable = true;
};
};
users.groups."games" = {
members = ["vinzenz" "ronja"];
};
users.users.vinzenz.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINrY6tcgnoC/xbgL7vxSjddEY9MBxRXe9n2cAHt88/TT home roaming"
];
};
}