treewide: replace !isDarwin with isLinux
This commit is contained in:
parent
653959f5b7
commit
f96f61251a
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@
|
|||
};
|
||||
|
||||
services.gpg-agent = {
|
||||
enable = lib.mkIf (!pkgs.stdenv.hostPlatform.isDarwin) true;
|
||||
enable = lib.mkIf pkgs.stdenv.hostPlatform.isLinux true;
|
||||
pinentryFlavor = "gnome3";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
++ (with inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.mpvScripts; [
|
||||
modernx
|
||||
])
|
||||
++ lib.optionals (!pkgs.stdenv.hostPlatform.isDarwin) (with pkgs.mpvScripts; [
|
||||
++ lib.optionals pkgs.stdenv.hostPlatform.isLinux (with pkgs.mpvScripts; [
|
||||
mpris
|
||||
]);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue