dotfiles/nixos/boxes/bootstrap/default.nix

21 lines
347 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";
2023-08-13 17:00:41 +01:00
programs.zsh.enable = true;
2021-06-26 19:12:31 +01:00
}