summaryrefslogtreecommitdiff
path: root/host/automatix.nix
blob: fd819f41031c528c746e64acd08636df7a36db6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, ... }:

{
  imports = [ ./hardware/automatix.nix ];

  boot.loader.grub = {
    enable  = true;
    version = 2;
    device  = "/dev/sda"; 
  };

  networking.hostName = "automatix";
}