nixos-configuration/vinzenz-lpt.nix

26 lines
636 B
Nix
Raw Normal View History

2023-09-09 19:34:23 +02:00
{...}: {
imports = [
(import ./modules {
hostName = "vinzenz-lpt";
enableHomeManager = true;
})
];
2023-09-02 14:53:25 +02:00
2023-09-09 14:57:55 +02:00
config = {
2023-09-24 12:39:28 +02:00
my = {
enabledUsers = ["vinzenz"];
2023-12-04 22:24:43 +01:00
tailscale.enable = true;
2023-09-24 12:39:28 +02:00
desktop = {
enableGnome = true;
enableGaming = true;
2023-10-22 14:14:39 +02:00
enablePrinting = true;
2023-09-24 12:39:28 +02:00
};
2023-09-10 14:12:01 +02:00
};
2023-12-05 14:50:19 +01:00
users.users.vinzenz.openssh.authorizedKeys.keys = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFCJUpbpB3KEKVoKWsKoar9J4RNah8gmQoSH6jQEw5dY vinzenz-pixel-JuiceSSH''
2023-12-05 15:00:02 +01:00
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO1CRn4yYTL4XUdCebE8Z4ZeuMujBjorTdWifg911EOv vinzenz-pc2 home roaming''
2023-12-05 14:50:19 +01:00
];
2023-09-09 14:57:55 +02:00
};
2023-04-04 21:41:44 +02:00
}