mio-ops/Hosts/cuallaidh.nix

35 lines
853 B
Nix
Raw Normal View History

2019-07-02 01:35:00 +00:00
# NixOps configuration for cuallaidh
{
cuallaidh =
{ config, pkgs, lib, ... }:
{
2019-08-20 11:02:58 +00:00
imports =
[
2019-09-06 01:04:48 +00:00
../Deployments/gitea.nix
2019-08-20 11:02:58 +00:00
../Deployments/hydra.nix
2019-09-25 03:53:46 +00:00
../Deployments/IOHK.nix
2019-10-15 14:31:36 +00:00
../Deployments/nixpkgs-dev.nix
#../Deployments/jormungandr.nix
../Deployments/syncserver.nix
../Deployments/taskserver.nix
../Deployments/tt-rss.nix
2019-10-15 14:49:29 +00:00
../Secrets/gitea.nix
../Secrets/syncserver.nix
../Secrets/tt-rss.nix
2019-08-20 11:02:58 +00:00
];
2019-07-02 01:35:00 +00:00
deployment.targetHost = "172.105.197.118";
2019-08-20 11:02:58 +00:00
networking.hostName = "cuallaidh"; # Define your hostname.
2019-10-15 14:31:36 +00:00
nix.nixPath = [
"nixpkgs=https://nixos.org/channels/nixos-19.09/nixexprs.tar.xz"
];
2019-08-20 11:02:58 +00:00
system.stateVersion = "19.03"; # The version of NixOS originally installed
2019-07-02 01:35:00 +00:00
};
}