34 lines
738 B
Nix
34 lines
738 B
Nix
# NixOps configuration for cuallaidh
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
imports =
|
|
[
|
|
../clusters/linode.nix
|
|
../roles/coturn.nix
|
|
../roles/cyclone-ibis.nix
|
|
../roles/gitea.nix
|
|
#../roles/hydra.nix
|
|
../roles/iohk.nix
|
|
../roles/matrix.nix
|
|
../roles/nextcloud.nix
|
|
../roles/nixpkgs-dev.nix
|
|
../roles/taskserver.nix
|
|
../roles/tt-rss.nix
|
|
../secrets/gitea.nix
|
|
../secrets/tt-rss.nix
|
|
];
|
|
|
|
deployment.targetHost = "172.105.171.16";
|
|
|
|
networking.hostName = "cuallaidh"; # Define your hostname.
|
|
|
|
nix.nixPath = [
|
|
"nixpkgs=https://nixos.org/channels/nixos-20.03/nixexprs.tar.xz"
|
|
];
|
|
|
|
system.stateVersion = "19.03"; # The version of NixOS originally installed
|
|
}
|