37 lines
923 B
Nix
37 lines
923 B
Nix
# NixOps configuration for cuallaidh
|
|
|
|
{
|
|
cuallaidh =
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
imports =
|
|
[
|
|
../roles/gitea.nix
|
|
../roles/hydra.nix
|
|
../roles/IOHK.nix
|
|
../roles/matrix.nix
|
|
../roles/nixpkgs-dev.nix
|
|
#../roles/jormungandr.nix
|
|
#../roles/syncserver.nix
|
|
../roles/taskserver.nix
|
|
../roles/tt-rss.nix
|
|
../secrets/gitea.nix
|
|
#../secrets/syncserver.nix
|
|
../secrets/tt-rss.nix
|
|
#/home/craige/source/IOHK/cardano-explorer/nix/nixos/cardano-explorer-fe.nix
|
|
];
|
|
|
|
deployment.targetHost = "172.105.171.16";
|
|
|
|
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
|
|
};
|
|
}
|