fix(flake): Do not add postfix to devshell when on Darwin

This commit is contained in:
Myzel394 2024-09-30 09:57:24 +02:00
parent d4e8269844
commit e189ebbdd4
No known key found for this signature in database
GPG Key ID: ED20A1D1D423AF3F

View File

@ -43,9 +43,10 @@
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
buildInputs = inputs ++ (with pkgs; [ buildInputs = inputs ++ (with pkgs; [
mailutils mailutils
postfix
wireguard-tools wireguard-tools
]); ]) ++ (if pkgs.stdenv.isLinux then with pkgs; [
postfix
] else []);
}; };
} }
); );