add a postgres configuration

This commit is contained in:
insects 2024-08-13 21:21:10 +02:00
parent da5d812d6b
commit 36ca37c8cf
3 changed files with 51 additions and 38 deletions

View file

@ -1,14 +1,14 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
{ inputs
, outputs
, lib
, config
, pkgs
, ...
}: {
imports = [
../common
./hardware-configuration.nix
../services/postgres.nix
];
nixpkgs = {
@ -17,18 +17,20 @@
};
};
nix = let
flakeInputs = lib.filterAttrs (_: lib.isType "flake") inputs;
in {
settings = {
flake-registry = "";
nix-path = config.nix.nixPath;
};
channel.enable = false;
nix =
let
flakeInputs = lib.filterAttrs (_: lib.isType "flake") inputs;
in
{
settings = {
flake-registry = "";
nix-path = config.nix.nixPath;
};
channel.enable = false;
registry = lib.mapAttrs (_: flake: {inherit flake;}) flakeInputs;
nixPath = lib.mapAttrsToList (n: _: "${n}=flake:${n}") flakeInputs;
};
registry = lib.mapAttrs (_: flake: { inherit flake; }) flakeInputs;
nixPath = lib.mapAttrsToList (n: _: "${n}=flake:${n}") flakeInputs;
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
@ -59,7 +61,7 @@
lu = {
shell = pkgs.fish;
isNormalUser = true;
extraGroups = ["wheel" "storage"];
extraGroups = [ "wheel" "storage" ];
};
};

View file

@ -0,0 +1,9 @@
{ ... }: {
services.postgresql = {
enable = true;
ensureUsers = [
{ name = "lu"; ensureClauses = { superuser = true; }; }
];
};
}

View file

@ -1,14 +1,14 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
{ inputs
, outputs
, lib
, config
, pkgs
, ...
}: {
imports = [
../common
./hardware-configuration.nix
../services/postgres.nix
];
nixpkgs = {
@ -17,18 +17,20 @@
};
};
nix = let
flakeInputs = lib.filterAttrs (_: lib.isType "flake") inputs;
in {
settings = {
flake-registry = "";
nix-path = config.nix.nixPath;
};
channel.enable = false;
nix =
let
flakeInputs = lib.filterAttrs (_: lib.isType "flake") inputs;
in
{
settings = {
flake-registry = "";
nix-path = config.nix.nixPath;
};
channel.enable = false;
registry = lib.mapAttrs (_: flake: {inherit flake;}) flakeInputs;
nixPath = lib.mapAttrsToList (n: _: "${n}=flake:${n}") flakeInputs;
};
registry = lib.mapAttrs (_: flake: { inherit flake; }) flakeInputs;
nixPath = lib.mapAttrsToList (n: _: "${n}=flake:${n}") flakeInputs;
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
@ -59,7 +61,7 @@
lu = {
shell = pkgs.fish;
isNormalUser = true;
extraGroups = ["wheel" "storage"];
extraGroups = [ "wheel" "storage" ];
};
};