nixos-configuration/vinzenz-pc3.nix

14 lines
306 B
Nix
Raw Normal View History

2023-08-27 13:28:13 +02:00
{...}: {
networking.hostName = "vinzenz-pc3";
imports = [
./vinzenz-pc3-hardware-configuration.nix
./common.nix
./kde.nix
];
2023-09-02 14:41:58 +02:00
users.users.vinzenz.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINrY6tcgnoC/xbgL7vxSjddEY9MBxRXe9n2cAHt88/TT home roaming"
];
2023-08-27 13:28:13 +02:00
}