Compare commits

..

No commits in common. "83c40e5cc9ef637afb45c9d3ac0742a9b58fb576" and "0b2f6c9f023977c32082cc22be1516dfca935da9" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View file

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

View file

@ -1,11 +1,11 @@
{ config, lib, pkgs, ... }: { config, lib, unstable, ... }:
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 = [
pkgs.jellyfin-media-player unstable.jellyfin-media-player
]; ];
}; };
} }