add juicity pkg, and modify overlays.

This commit is contained in:
ulic-youthlic 2025-02-03 14:07:16 +08:00
parent c0736d3c9a
commit 63a8871eaa
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
6 changed files with 44 additions and 0 deletions

View file

@ -7,6 +7,7 @@ let
./spotify.nix
./niri.nix
./ghostty.nix
./juicity.nix
];
overlay-list = map (file: import file args) overlay-files;
in

View file

@ -0,0 +1,9 @@
{ outputs, ... }:
final: prev:
let
inherit (final) stdenv;
inherit (stdenv.hostPlatform) system;
in
{
juicity = outputs.packages."${system}".juicity;
}