dotfiles/nixos/boxes/bootstrap/default.nix

15 lines
307 B
Nix
Raw Normal View History

2022-03-02 22:46:45 +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";
}