snowflake/hosts/yuki/default.nix
2023-06-03 22:53:57 -04:00

30 lines
477 B
Nix

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