pc3 is pc2

This commit is contained in:
Vinzenz Schroeter 2023-09-09 19:38:21 +02:00
parent e085501d00
commit dbe364c39c
2 changed files with 1 additions and 1 deletions

22
vinzenz-pc2.nix Normal file
View file

@ -0,0 +1,22 @@
{...}: {
imports = [
./modules
(import ./hardware "vinzenz-pc2")
];
config = {
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"
];
};
}