Added teintidh

Also corrected paths
This commit is contained in:
Serĉanto de Scio 2019-12-11 00:34:13 +10:00
parent 4a27c112bb
commit a3862cbbd1
Signed by: sercanto
GPG key ID: A4122FF3971B6865
2 changed files with 30 additions and 3 deletions

View file

@ -14,8 +14,9 @@
};
cuallaidh = import ../hosts/cuallaidh.nix;
pi-ceithir = import hosts/pi-ceithir.nix;
pi-coig = import hosts/pi-coig.nix;
pi-tri = import hosts/pi-tri.nix;
pi-ceithir = import ../hosts/pi-ceithir.nix;
pi-coig = import ../hosts/pi-coig.nix;
pi-tri = import ../hosts/pi-tri.nix;
teintidh = import ../hosts/teintidh.nix;
}

26
hosts/teintidh.nix Normal file
View file

@ -0,0 +1,26 @@
# 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.141";
networking.hostName = "teinatidh"; # Define your hostname.
nix.nixPath = [
"nixpkgs=https://nixos.org/channels/nixos-19.09/nixexprs.tar.xz"
];
system.stateVersion = "18.09"; # The version of NixOS originally installed
}