snowflake/hosts/kariru/default.nix

30 lines
400 B
Nix
Raw Normal View History

2023-05-17 10:13:01 -04:00
{
config,
pkgs,
...
}: {
imports = [
./hardware-configuration.nix
../../modules
../../modules/services/arr
];
boot.loader = {
grub = {
enable = true;
configurationLimit = 3;
device = "/dev/sda";
useOSProber = false;
};
};
networking = {
hostName = "kariru";
};
services.xserver = {
layout = "us";
xkbVariant = "";
};
}