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 dd3c91a9ba
commit 25bb604957

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 []);
}; };
} }
); );