snowflake/hosts/kariru/default.nix

26 lines
362 B
Nix
Raw Normal View History

2023-06-11 02:08:06 -04:00
{...}: {
2023-05-17 10:13:01 -04:00
imports = [
./hardware-configuration.nix
2023-05-28 22:00:50 -04:00
./services
2023-05-17 10:13:01 -04:00
../../modules
];
boot.loader = {
grub = {
enable = true;
configurationLimit = 5;
2023-05-17 10:13:01 -04:00
device = "/dev/sda";
useOSProber = false;
};
};
networking = {
hostName = "kariru";
};
services.xserver = {
layout = "us";
xkbVariant = "";
};
}