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