snowflake/hosts/yuki/default.nix

30 lines
495 B
Nix
Raw Normal View History

2023-06-10 16:41:06 -04:00
{pkgs, ...}: {
2023-06-03 22:53:57 -04:00
imports = [
./hardware-configuration.nix
2023-06-10 05:03:50 -04:00
./services
2023-06-03 22:53:57 -04:00
../../modules
];
2023-06-10 05:03:50 -04:00
2023-06-03 22:53:57 -04:00
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 8;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
};
2023-06-10 16:41:06 -04:00
boot.kernelPackages = pkgs.linuxPackages_latest;
2023-06-03 22:53:57 -04:00
networking.hostName = "yuki";
networking.networkmanager.enable = true;
services.xserver = {
layout = "us";
xkbVariant = "";
};
}