snowflake/hosts/sakura/default.nix

32 lines
436 B
Nix

{
config,
pkgs,
...
}: {
imports = [
./hardware-configuration.nix
./services
../../modules
];
boot.loader = {
grub = {
enable = true;
configurationLimit = 3;
device = "/dev/sda";
useOSProber = false;
};
};
boot.kernelPackages = pkgs.linuxPackages_latest;
networking = {
hostName = "sakura";
};
services.xserver = {
layout = "us";
xkbVariant = "";
};
}