snowflake/hosts/sakura/default.nix

32 lines
436 B
Nix
Raw Normal View History

2023-05-12 05:26:48 -04:00
{
config,
pkgs,
...
}: {
imports = [
./hardware-configuration.nix
2023-05-28 22:00:50 -04:00
./services
2023-05-12 05:26:48 -04:00
../../modules
];
boot.loader = {
grub = {
enable = true;
configurationLimit = 3;
device = "/dev/sda";
useOSProber = false;
};
};
2023-05-14 02:01:41 -04:00
2023-06-10 16:41:06 -04:00
boot.kernelPackages = pkgs.linuxPackages_latest;
2023-05-12 05:26:48 -04:00
networking = {
hostName = "sakura";
};
services.xserver = {
layout = "us";
xkbVariant = "";
};
}