dotfiles/nixos/boxes/bootstrap/default.nix

14 lines
307 B
Nix
Raw Normal View History

2022-03-10 12:25:23 +00:00
{ config, pkgs, inputs, nixpkgs-nixos-unstable-and-unfree, ... }: {
2021-06-26 19:12:31 +01:00
networking.hostName = "fixme";
imports = [
./hardware-configuration.nix
../../boot.nix
../../common.nix
../../gfx-intel.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest;
time.timeZone = "Europe/London";
}