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 {
buildInputs = inputs ++ (with pkgs; [
mailutils
postfix
wireguard-tools
]);
]) ++ (if pkgs.stdenv.isLinux then with pkgs; [
postfix
] else []);
};
}
);