snowflake/hosts/yuki/default.nix

34 lines
715 B
Nix
Raw Normal View History

2023-06-11 02:08:06 -04:00
{...}: {
2023-06-03 22:53:57 -04:00
imports = [
./hardware-configuration.nix
2023-06-10 05:03:50 -04:00
./services
./networking.nix
2023-06-03 22:53:57 -04:00
../../modules
];
2023-06-10 05:03:50 -04:00
2023-06-03 22:53:57 -04:00
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 8;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
};
networking.hostName = "yuki";
services.xserver = {
layout = "us";
xkbVariant = "";
};
2023-06-23 22:23:43 -04:00
2023-06-23 22:14:38 -04:00
users.users.notoh.openssh.authorizedKeys.keys = [
2023-10-20 20:26:47 -04:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINoLDqOjZIQQ+YYir9MQnlh8wgqI1dz5nYL054OnIgDa yuki"
];
users.users.root.openssh.authorizedKeys.keys = [
2023-10-20 20:53:40 -04:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMd8j1+fC/ng7l17rsxugVtlhurUe1ICizwA9lQkSuNY forgejo"
2023-06-23 22:14:38 -04:00
];
2023-06-03 22:53:57 -04:00
}