snowflake/hosts/yuki/default.nix

26 lines
393 B
Nix

{...}: {
imports = [
./hardware-configuration.nix
./services
../../modules
];
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 8;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
};
networking.hostName = "yuki";
services.xserver = {
layout = "us";
xkbVariant = "";
};
}