blob: 59438b0a72adce60035a5d9778bf2fe8c908afd2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ depot, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../profiles/archeology.nix
];
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
boot.kernelParams = [ "console=ttyS0" ];
networking.hostName = "archeology";
system.stateVersion = "23.05"; # Did you read the comment?
}
|