snowflake/hosts/sakura/default.nix

28 lines
405 B
Nix
Raw Normal View History

2023-06-11 02:08:06 -04:00
{...}: {
2023-05-12 05:26:48 -04:00
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;
2023-06-16 04:18:37 -04:00
configurationLimit = 5;
2023-05-12 05:26:48 -04:00
device = "/dev/sda";
useOSProber = false;
};
};
2023-05-14 02:01:41 -04:00
2023-05-12 05:26:48 -04:00
networking = {
hostName = "sakura";
};
services.snowflake-proxy.enable = true;
2023-05-12 05:26:48 -04:00
services.xserver = {
layout = "us";
xkbVariant = "";
};
}