mio-ops/hosts/sithlainnir.nix
Craige McWhirter 0b85ed20e8
Unified nixPath
2020-06-23 12:31:05 +10:00

23 lines
496 B
Nix

# Configuration for sithlainnir, 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.121";
networking.hostName = "sithlainnir"; # Define your hostname.
system.stateVersion = "18.09"; # The version of NixOS originally installed
}