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 = {
|
services.gpg-agent = {
|
||||||
enable = lib.mkIf (!pkgs.stdenv.hostPlatform.isDarwin) true;
|
enable = lib.mkIf pkgs.stdenv.hostPlatform.isLinux true;
|
||||||
pinentryFlavor = "gnome3";
|
pinentryFlavor = "gnome3";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
++ (with inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.mpvScripts; [
|
++ (with inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.mpvScripts; [
|
||||||
modernx
|
modernx
|
||||||
])
|
])
|
||||||
++ lib.optionals (!pkgs.stdenv.hostPlatform.isDarwin) (with pkgs.mpvScripts; [
|
++ lib.optionals pkgs.stdenv.hostPlatform.isLinux (with pkgs.mpvScripts; [
|
||||||
mpris
|
mpris
|
||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue