Compare commits

..

2 commits

Author SHA1 Message Date
Tigor Hutasuhut 83c40e5cc9 jellyfin-client: moved to stable 2024-07-10 09:35:05 +07:00
Tigor Hutasuhut cea1278f2b github: moved to stable 2024-07-10 09:34:58 +07:00
2 changed files with 4 additions and 4 deletions

View file

@ -1,9 +1,9 @@
{ config, lib, unstable, ... }: { config, lib, pkgs, ... }:
let let
cfg = config.profile.gh; cfg = config.profile.gh;
in in
{ {
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
home.packages = [ unstable.gh ]; home.packages = [ pkgs.gh ];
}; };
} }

View file

@ -1,11 +1,11 @@
{ config, lib, unstable, ... }: { config, lib, pkgs, ... }:
let let
cfg = config.profile.jellyfin; cfg = config.profile.jellyfin;
in in
{ {
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
home.packages = [ home.packages = [
unstable.jellyfin-media-player pkgs.jellyfin-media-player
]; ];
}; };
} }