mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
23 lines
458 B
Nix
23 lines
458 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
(import ./modules {
|
|
hostName = "vinzenz-pc2";
|
|
enableHomeManager = true;
|
|
})
|
|
];
|
|
|
|
config = {
|
|
my = {
|
|
enabledUsers = ["vinzenz" "ronja"];
|
|
desktop = {
|
|
enableKde = true;
|
|
enableGaming = true;
|
|
};
|
|
};
|
|
|
|
users.users.vinzenz.openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINrY6tcgnoC/xbgL7vxSjddEY9MBxRXe9n2cAHt88/TT home roaming"
|
|
];
|
|
};
|
|
}
|