snowflake/hosts/kariru/default.nix
notohh 55a3526bf2
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
hosts: formatting
2023-06-23 22:23:43 -04:00

30 lines
516 B
Nix

{...}: {
imports = [
./hardware-configuration.nix
./services
../../modules
];
boot.loader = {
grub = {
enable = true;
configurationLimit = 5;
device = "/dev/sda";
useOSProber = false;
};
};
networking = {
hostName = "kariru";
};
services.xserver = {
layout = "us";
xkbVariant = "";
};
users.users.notoh.openssh.authorizedKeys.keys = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPmWafzbhah18nm2z1epc6139XVlcKT0ndAI0wbLj+/6 kariru''
];
}