From 36ca37c8cf7e9dd7b41db1df6c5232d819eb9ea2 Mon Sep 17 00:00:00 2001 From: liv Date: Tue, 13 Aug 2024 21:21:10 +0200 Subject: [PATCH] add a postgres configuration --- nixos/enoko/configuration.nix | 40 ++++++++++++++++++---------------- nixos/services/postgres.nix | 9 ++++++++ nixos/yukari/configuration.nix | 40 ++++++++++++++++++---------------- 3 files changed, 51 insertions(+), 38 deletions(-) create mode 100644 nixos/services/postgres.nix diff --git a/nixos/enoko/configuration.nix b/nixos/enoko/configuration.nix index c91498e..e2ccd03 100644 --- a/nixos/enoko/configuration.nix +++ b/nixos/enoko/configuration.nix @@ -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" ]; }; }; diff --git a/nixos/services/postgres.nix b/nixos/services/postgres.nix new file mode 100644 index 0000000..5dc8b97 --- /dev/null +++ b/nixos/services/postgres.nix @@ -0,0 +1,9 @@ +{ ... }: { + services.postgresql = { + enable = true; + + ensureUsers = [ + { name = "lu"; ensureClauses = { superuser = true; }; } + ]; + }; +} diff --git a/nixos/yukari/configuration.nix b/nixos/yukari/configuration.nix index a2949c1..2b8d99f 100644 --- a/nixos/yukari/configuration.nix +++ b/nixos/yukari/configuration.nix @@ -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" ]; }; };