nixos-configuration/vinzenz-pc3.nix
2023-09-09 15:22:04 +02:00

30 lines
510 B
Nix

{
config,
lib,
pkgs,
...
}: {
imports = [
./modules
./hardware/vinzenz-pc3.nix
];
config = {
networking.hostName = "vinzenz-pc3";
my.kde.enable = true;
my.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"
];
};
}