mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
fix(flake): Do not add postfix to devshell when on Darwin
This commit is contained in:
parent
dd3c91a9ba
commit
25bb604957
@ -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 []);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user