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