Currently broken config...

This commit is contained in:
root
2020-01-15 11:24:11 -06:00
parent 46c45f4440
commit 00a97b1d94
51 changed files with 2991 additions and 364 deletions

View File

@@ -1,8 +1,6 @@
{ stdenv, fetchurl }:
let
# url = "https://letsencrypt.org/certs/isrgrootx1.pem.txt";
# sha256 = "4c99356c265ee06c0ae0502e74d38231263513726d001cfe28ea25e70af2cc7f";
url = "https://letsencrypt.org/certs/letsencryptauthorityx3.pem.txt";
sha256 = "b6dd03f7fb8508e4f7ffe82ca8a3f98dde163e0bd44897e112a0850a5b606acf";

View File

@@ -1,10 +0,0 @@
{ pkgs, ... }:
{
nixpkgs.config.packageOverrides = pkgs: rec {
acme-ca = import ./acme-ca.nix {
stdenv = pkgs.stdenv;
fetchurl = builtins.fetchurl;
};
};
}

View File

@@ -2,6 +2,11 @@
{
nixpkgs.config.packageOverrides = pkgs: rec {
letsencrypt-ca = import ./letsencrypt-ca.nix {
stdenv = pkgs.stdenv;
fetchurl = builtins.fetchurl;
};
minecraft-server_1_15_1 = pkgs.minecraft-server.overrideAttrs (oldAttrs: rec {
version = "1.15.1";
src = builtins.fetchurl {
@@ -9,5 +14,10 @@
sha256 = "a0c062686bee5a92d60802ca74d198548481802193a70dda6d5fe7ecb7207993";
};
});
postgresql_11_gssapi = pkgs.postgresql_11.overrideAttrs (oldAttrs: rec {
configureFlags = oldAttrs.configureFlags ++ [ "--with-gssapi" ];
buildInputs = oldAttrs.buildInputs ++ [ pkgs.krb5 ];
});
};
}

View File

@@ -1,46 +0,0 @@
{ config, lib, pkgs, ... }:
with lib;
let
userOpts = { name, config, ... }: {
options = {
passwd = mkOption {
type = types.str;
description = ''
The password of a given user.
'';
};
databases = mkOption {
type = types.listOf types.str;
default = [];
description = ''
A list of databases to which this user should have access.
'';
};
};
};
in {
options = {
fudo.postgresql = {
databases = mkOption {
type = types.attrsOf types.lines;
default = {};
description = ''
A map of database_name => database_defn.
'';
};
users = mkOption {
type = with types; attrsOf (submodule userOpts);
default = {};
description = ''
A map of user_name => { user_attributes }.
'';
};
};
};
}

View File

@@ -1,10 +0,0 @@
{ pkgs, ... }:
{
nixpkgs.config.packageOverrides = pkgs: rec {
postgresql_11_gssapi = pkgs.postgresql_11.overrideAttrs (oldAttrs: rec {
configureFlags = oldAttrs.configureFlags ++ [ "--with-gssapi" ];
buildInputs = oldAttrs.buildInputs ++ [ pkgs.krb5 ];
});
};
}