Added teintidh
Also corrected paths
This commit is contained in:
parent
4a27c112bb
commit
a3862cbbd1
|
@ -14,8 +14,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
cuallaidh = import ../hosts/cuallaidh.nix;
|
cuallaidh = import ../hosts/cuallaidh.nix;
|
||||||
pi-ceithir = import hosts/pi-ceithir.nix;
|
pi-ceithir = import ../hosts/pi-ceithir.nix;
|
||||||
pi-coig = import hosts/pi-coig.nix;
|
pi-coig = import ../hosts/pi-coig.nix;
|
||||||
pi-tri = import hosts/pi-tri.nix;
|
pi-tri = import ../hosts/pi-tri.nix;
|
||||||
|
teintidh = import ../hosts/teintidh.nix;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
26
hosts/teintidh.nix
Normal file
26
hosts/teintidh.nix
Normal 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
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue