mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 10:30:14 +01:00
32 lines
769 B
Nix
32 lines
769 B
Nix
{...}: {
|
|
imports = [
|
|
(import ./modules {
|
|
hostName = "vinzenz-pc2";
|
|
enableHomeManager = true;
|
|
})
|
|
];
|
|
|
|
config = {
|
|
my = {
|
|
enabledUsers = ["vinzenz" "ronja"];
|
|
tailscale.enable = true;
|
|
desktop = {
|
|
enableGnome = true;
|
|
enableGaming = true;
|
|
enablePrinting = true;
|
|
};
|
|
buildtools = {
|
|
native = true;
|
|
dotnet = true;
|
|
rust = true;
|
|
jetbrains-remote-server = true;
|
|
};
|
|
};
|
|
|
|
users.users.vinzenz.openssh.authorizedKeys.keys = [
|
|
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINrY6tcgnoC/xbgL7vxSjddEY9MBxRXe9n2cAHt88/TT home roaming''
|
|
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFCJUpbpB3KEKVoKWsKoar9J4RNah8gmQoSH6jQEw5dY vinzenz-pixel-JuiceSSH''
|
|
];
|
|
};
|
|
}
|