Skip to content

Commit

Permalink
development/shells: fix evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
linyinfeng committed Sep 23, 2024
1 parent 5f69e6f commit e7b1f09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/profiles/development/shells/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ lib.mkMerge [
])
++ (with pkgs; [
libnotify # for done notification
comma-with-db
]);
])
++ lib.optional (pkgs ? comma-with-db) pkgs.comma-with-db;

environment.global-persistence.user.directories = [ ".local/share/fish" ];
}
Expand Down

0 comments on commit e7b1f09

Please sign in to comment.