about summary refs log blame commit diff
path: root/users/flokli/nixos/archeology/configuration.nix
blob: 59438b0a72adce60035a5d9778bf2fe8c908afd2 (plain) (tree)
1
2
3
4
5
6
7
8
                     

 
             
                                
                              
    
 





                                          

                                     
                                                            

 
{ 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?
}