dotfiles/nixos/boxes/bootstrap/default.nix

20 lines
317 B
Nix
Raw Normal View History

2022-12-19 09:09:08 +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";
}