1
0
Fork 0

fish: Fix terminal-notifier on linux

This commit is contained in:
Daniel Kempkens 2022-12-20 20:34:16 +01:00
parent 968222a84f
commit 66b96d33b7
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -1,7 +1,14 @@
{ pkgs, config, ... }:
{ pkgs, config, lib, ... }:
let
inherit (pkgs.stdenv) isDarwin;
inherit (lib) optionals;
in
{
home.packages = [ pkgs.terminal-notifier ];
home.packages = with pkgs; [ ] ++ optionals isDarwin [
terminal-notifier
];
programs.fish = {
enable = true;