snowflake/hosts/arashi/default.nix

26 lines
362 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;
};
};
networking = {
hostName = "arashi";
};
services.xserver = {
layout = "us";
xkbVariant = "";
};
}