about summary refs log tree commit diff stats
path: root/hosts/marduk/default.nix
blob: a45d9efd253a3835c235036ff70aa82f87cd3c10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# vim: ts=2
{lib, ...}: {
  imports = [
    ./hardware
    ./networking.nix
  ];

  console = {
    keyMap = "dvorak";
  };
  # needed to override defaults
  isoImage.isoName = lib.mkForce "nixos-iso";

  system.stateVersion = "23.05";
}