mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
26 lines
504 B
Nix
26 lines
504 B
Nix
{...}: {
|
|
imports = [
|
|
./modules
|
|
(import ./modules/hardware "vinzenz-pc2")
|
|
];
|
|
|
|
config = {
|
|
my = {
|
|
desktop = {
|
|
enable = true;
|
|
kde.enable = true;
|
|
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"
|
|
];
|
|
};
|
|
}
|