From 7083deb773b9c12ef56da6a934f9f0daca95d8ba Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Wed, 29 Jan 2025 14:11:40 -0800 Subject: add affinity system --- nix/modules/postfix.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 nix/modules/postfix.nix (limited to 'nix/modules/postfix.nix') diff --git a/nix/modules/postfix.nix b/nix/modules/postfix.nix new file mode 100644 index 0000000..90eb253 --- /dev/null +++ b/nix/modules/postfix.nix @@ -0,0 +1,8 @@ +{ config, lib, ... }: +{ + services.postfix = { + enable = true; + config = { + }; + }; +} -- cgit