Skip to content

Instantly share code, notes, and snippets.

@disassembler
Created May 31, 2017 15:04
Show Gist options
  • Save disassembler/bb3c75cc2640c2736ee093422ea41092 to your computer and use it in GitHub Desktop.
Save disassembler/bb3c75cc2640c2736ee093422ea41092 to your computer and use it in GitHub Desktop.
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
{ lib, config, pkgs, fetchgit, ... }:
{
services = {
passopolis = {
enable = true;
};
postgresql = {
enable = true;
authentication = ''
local all all trust
host all all 127.0.0.1/32 trust
'';
};
};
users.users.root.initialPassword = "root";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment