mio-ops/hosts/iolear-beag.nix

23 lines
483 B
Nix
Raw Normal View History

2019-12-11 01:52:19 +00:00
# Configuration for a Lenovo x201
{ config, pkgs, ... }:
{
imports =
[
../hardware/lenovo_x201.nix
../roles/desktop_common.nix
];
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
deployment.targetHost = "10.69.0.158";
networking.hostName = "iolear-beag"; # Define your hostname.
system.stateVersion = "18.09"; # The version of NixOS originally installed
}