snowflake/hosts/arashi/default.nix

37 lines
729 B
Nix
Raw Normal View History

2023-06-18 11:21:06 -04:00
{...}: {
imports = [
./hardware-configuration.nix
2023-06-18 17:35:07 -04:00
./services
2023-06-18 11:21:06 -04:00
../../modules
];
boot.loader = {
grub = {
enable = true;
configurationLimit = 5;
device = "/dev/sda";
useOSProber = false;
};
};
boot.kernel.sysctl = {
"kernel.shmmax" = 100663296;
};
2023-06-18 11:21:06 -04:00
networking = {
hostName = "arashi";
};
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 AAAAC3NzaC1lZDI1NTE5AAAAIKWRbIwwHuyEOLhA9dKTf4TgFqtPR5MNcJorKm731S7G arashi"
];
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINGPcRO9BzKIhAxiyVnRIcByaMTrxeeeJqB8iXcmhrI4 forgejo"
2023-06-23 22:14:38 -04:00
];
2023-06-18 11:21:06 -04:00
}