feat: Homepage

This commit is contained in:
marthsincemelee
2025-12-23 17:36:29 +01:00
parent 39263f65f9
commit bc87844e76
3 changed files with 26 additions and 1 deletions
+1
View File
@@ -11,6 +11,7 @@
./prowlarr
./radarr
./docker
./homepage
./kde-desktop
./readarr
./sonarr
+24
View File
@@ -0,0 +1,24 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.profiles.homepage;
in
{
options.my.profiles.homepage = with lib; {
homepage = mkEnableOption "getHomepage.dev";
};
config = lib.mkIf cfg.homepage {
services.homepage-dashboard.enable = true;
users.users.finn.packages = with pkgs; [
homepage-dashboard
];
programs.chromium.homepageLocation = "http://jupiter.solar.internal";
};
}