mio-ops/hosts/cuallaidh.nix

37 lines
923 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-11-12 23:34:30 +00:00
../roles/gitea.nix
../roles/hydra.nix
2019-11-27 00:52:13 +00:00
../roles/iohk.nix
2019-11-12 23:34:30 +00:00
../roles/matrix.nix
../roles/nixpkgs-dev.nix
#../roles/jormungandr.nix
#../roles/syncserver.nix
../roles/taskserver.nix
../roles/tt-rss.nix
2019-11-22 06:43:17 +00:00
../secrets/gitea.nix
#../secrets/syncserver.nix
../secrets/tt-rss.nix
2019-11-12 23:31:26 +00:00
#/home/craige/source/IOHK/cardano-explorer/nix/nixos/cardano-explorer-fe.nix
2019-08-20 11:02:58 +00:00
];
2019-11-22 06:43:17 +00:00
deployment.targetHost = "172.105.171.16";
2019-07-02 01:35:00 +00:00
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
};
}