refactor(caddy): use centralized caddyWithHetzner package definition
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m28s
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m28s
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
{
|
||||
device,
|
||||
pkgs,
|
||||
stablePkgs,
|
||||
...
|
||||
}: let
|
||||
config = {
|
||||
@@ -52,6 +53,6 @@
|
||||
};
|
||||
};
|
||||
in {
|
||||
programs.librewolf = config;
|
||||
programs.librewolf = config // {package = stablePkgs.librewolf;};
|
||||
# programs.firefox = config;
|
||||
}
|
||||
|
||||
@@ -5,6 +5,6 @@
|
||||
}: {
|
||||
home.packages = lib.optionals pkgs.stdenv.isLinux [
|
||||
pkgs.jellyflix
|
||||
pkgs.jellyfin-media-player
|
||||
# pkgs.jellyfin-media-player
|
||||
];
|
||||
}
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
stablePkgs,
|
||||
...
|
||||
}: {
|
||||
programs.thunderbird = {
|
||||
enable = pkgs.stdenv.isLinux;
|
||||
profiles = {
|
||||
};
|
||||
profiles = {};
|
||||
package = stablePkgs.thunderbird;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user