35 lines
853 B
Nix
35 lines
853 B
Nix
# NixOps configuration for cuallaidh
|
|
|
|
{
|
|
cuallaidh =
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
imports =
|
|
[
|
|
../Deployments/gitea.nix
|
|
../Deployments/hydra.nix
|
|
../Deployments/IOHK.nix
|
|
../Deployments/nixpkgs-dev.nix
|
|
#../Deployments/jormungandr.nix
|
|
../Deployments/syncserver.nix
|
|
../Deployments/taskserver.nix
|
|
../Deployments/tt-rss.nix
|
|
../Secrets/gitea.nix
|
|
../Secrets/syncserver.nix
|
|
../Secrets/tt-rss.nix
|
|
];
|
|
|
|
deployment.targetHost = "172.105.197.118";
|
|
|
|
networking.hostName = "cuallaidh"; # Define your hostname.
|
|
|
|
nix.nixPath = [
|
|
"nixpkgs=https://nixos.org/channels/nixos-19.09/nixexprs.tar.xz"
|
|
];
|
|
|
|
system.stateVersion = "19.03"; # The version of NixOS originally installed
|
|
};
|
|
}
|