snowflake/hosts/arashi/default.nix
2023-06-18 11:21:06 -04:00

24 lines
347 B
Nix

{...}: {
imports = [
./hardware-configuration.nix
../../modules
];
boot.loader = {
grub = {
enable = true;
configurationLimit = 5;
device = "/dev/sda";
useOSProber = false;
};
};
networking = {
hostName = "arashi";
};
services.xserver = {
layout = "us";
xkbVariant = "";
};
}