dotfiles/nixos/boxes/bootstrap/1.nix
2021-04-11 10:25:32 +01:00

18 lines
372 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "fixme";
imports = [
./hardware-configuration.nix
../../boot.nix
../../common.nix
../../distributed-builds.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest_hardened;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
time.timeZone = "Europe/London";
}