mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
28 lines
475 B
Nix
28 lines
475 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./modules
|
|
(import ./hardware "vinzenz-pc3")
|
|
];
|
|
|
|
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"
|
|
];
|
|
};
|
|
}
|