dotfiles/nixos/boxes/bootstrap/1.nix

18 lines
372 B
Nix
Raw Normal View History

2021-04-11 09:28:06 +01:00
{ config, pkgs, ... }:
{
networking.hostName = "fixme";
imports = [
./hardware-configuration.nix
../../boot.nix
../../common.nix
../../distributed-builds.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest_hardened;
2021-04-11 10:25:32 +01:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2021-04-11 09:28:06 +01:00
2021-04-11 10:25:32 +01:00
time.timeZone = "Europe/London";
2021-04-11 09:28:06 +01:00
}