nixos-configuration/vinzenz-pc3.nix

23 lines
446 B
Nix
Raw Normal View History

2023-09-09 19:34:23 +02:00
{...}: {
imports = [
./modules
(import ./hardware "vinzenz-pc3")
];
2023-09-02 14:41:58 +02:00
2023-09-09 14:57:55 +02:00
config = {
my.kde.enable = true;
2023-09-09 15:11:49 +02:00
my.home = {
2023-09-09 14:57:55 +02:00
vinzenz.enable = true;
ronja.enable = true;
2023-09-02 14:53:25 +02:00
};
2023-09-09 14:57:55 +02:00
users.groups."games" = {
members = ["vinzenz" "ronja"];
2023-09-03 16:44:26 +02:00
};
2023-09-09 14:57:55 +02:00
users.users.vinzenz.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINrY6tcgnoC/xbgL7vxSjddEY9MBxRXe9n2cAHt88/TT home roaming"
];
};
2023-08-27 13:28:13 +02:00
}