Compare commits
No commits in common. "7125b7e15a162387fafd7cf04e3f667799f9ff8c" and "94e279094a1b599b96b06903aea6929d5d0a9473" have entirely different histories.
7125b7e15a
...
94e279094a
|
@ -3,6 +3,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
./mas.nix
|
||||||
./postgresql.nix
|
./postgresql.nix
|
||||||
./matrix-synapse.nix
|
./matrix-synapse.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
|
6
config/hosts/matrix/mas.nix
Normal file
6
config/hosts/matrix/mas.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
matrix-authentication-service
|
||||||
|
];
|
||||||
|
}
|
|
@ -8,6 +8,11 @@
|
||||||
TEMPLATE template0
|
TEMPLATE template0
|
||||||
LC_COLLATE = "C"
|
LC_COLLATE = "C"
|
||||||
LC_CTYPE = "C";
|
LC_CTYPE = "C";
|
||||||
|
CREATE ROLE "mas_user" WITH LOGIN PASSWORD 'mas';
|
||||||
|
CREATE DATABASE "mas" WITH OWNER "mas_user"
|
||||||
|
TEMPLATE template0
|
||||||
|
LC_COLLATE = "C"
|
||||||
|
LC_CTYPE = "C";
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue