fish: Fix terminal-notifier on linux
This commit is contained in:
parent
968222a84f
commit
66b96d33b7
1 changed files with 9 additions and 2 deletions
|
@ -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 = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue