diff --git a/hosts/pingbox/configuration.nix b/hosts/pingbox/configuration.nix index adfca06..6e0c24d 100644 --- a/hosts/pingbox/configuration.nix +++ b/hosts/pingbox/configuration.nix @@ -12,6 +12,8 @@ ./hardware-configuration.nix ../common ../common/graphical + + (import ../../modules).pingbox ]; boot.resumeDevice = "/dev/disk/by-label/swap"; diff --git a/modules/default.nix b/modules/default.nix index d9164da..d4d3058 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -13,4 +13,10 @@ ./postgres ]; }; + + pingbox = { + imports = [ + ./postgres + ]; + }; }