nixos-configuration/vinzenz-pc2.nix

24 lines
485 B
Nix
Raw Normal View History

2023-10-02 17:14:20 +02:00
{...}: {
imports = [
(import ./modules {
hostName = "vinzenz-pc2";
enableHomeManager = true;
})
];
2023-09-02 14:41:58 +02:00
2023-09-09 14:57:55 +02:00
config = {
2023-09-24 12:39:28 +02:00
my = {
enabledUsers = ["vinzenz" "ronja"];
desktop = {
2023-11-24 16:12:21 +01:00
enableGnome = true;
2023-09-24 12:39:28 +02:00
enableGaming = true;
2023-10-22 14:14:39 +02:00
enablePrinting = true;
2023-09-24 12:39:28 +02:00
};
2023-09-03 16:44:26 +02:00
};
2023-09-09 14:57:55 +02:00
users.users.vinzenz.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINrY6tcgnoC/xbgL7vxSjddEY9MBxRXe9n2cAHt88/TT home roaming"
];
};
2023-08-27 13:28:13 +02:00
}