mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
homer: split config and update to new version
This commit is contained in:
parent
f21a143844
commit
04bf033484
3 changed files with 168 additions and 104 deletions
120
modules/services/homer/config.nix
Normal file
120
modules/services/homer/config.nix
Normal file
|
@ -0,0 +1,120 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
options.webapps = {
|
||||||
|
dashboardCategories = lib.mkOption {
|
||||||
|
type = lib.types.listOf (lib.types.submodule {
|
||||||
|
options = {
|
||||||
|
name = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = ''
|
||||||
|
Category name.
|
||||||
|
'';
|
||||||
|
example = "Applications";
|
||||||
|
};
|
||||||
|
tag = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = ''
|
||||||
|
Category tag.
|
||||||
|
'';
|
||||||
|
example = "app";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
});
|
||||||
|
description = ''
|
||||||
|
App categories to display on the dashboard.
|
||||||
|
'';
|
||||||
|
example = [
|
||||||
|
{
|
||||||
|
name = "Application";
|
||||||
|
tag = "app";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
default = [ ];
|
||||||
|
};
|
||||||
|
|
||||||
|
apps = lib.mkOption {
|
||||||
|
type = lib.types.attrsOf
|
||||||
|
(lib.types.submodule {
|
||||||
|
options = {
|
||||||
|
dashboard.link = lib.mkOption {
|
||||||
|
type = lib.types.nullOr lib.types.str;
|
||||||
|
description = ''
|
||||||
|
Link to webapp
|
||||||
|
'';
|
||||||
|
example = "http://192.168.1.10:1234";
|
||||||
|
default = null;
|
||||||
|
};
|
||||||
|
dashboard.name = lib.mkOption {
|
||||||
|
type = lib.types.nullOr lib.types.str;
|
||||||
|
description = ''
|
||||||
|
Application name.
|
||||||
|
'';
|
||||||
|
example = "App";
|
||||||
|
default = null;
|
||||||
|
};
|
||||||
|
dashboard.category = lib.mkOption {
|
||||||
|
type = lib.types.nullOr lib.types.str;
|
||||||
|
description = ''
|
||||||
|
App category tag.
|
||||||
|
'';
|
||||||
|
example = "app";
|
||||||
|
default = null;
|
||||||
|
};
|
||||||
|
dashboard.icon = lib.mkOption {
|
||||||
|
type = lib.types.nullOr lib.types.str;
|
||||||
|
description = ''
|
||||||
|
Font Awesome application icon.
|
||||||
|
'';
|
||||||
|
example = "rss";
|
||||||
|
default = null;
|
||||||
|
};
|
||||||
|
dashboard.type = lib.mkOption {
|
||||||
|
type = lib.types.nullOr lib.types.str;
|
||||||
|
description = ''
|
||||||
|
application type.
|
||||||
|
'';
|
||||||
|
example = "Ping";
|
||||||
|
default = "Ping";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
});
|
||||||
|
description = ''
|
||||||
|
Defines a web application.
|
||||||
|
'';
|
||||||
|
default = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config =
|
||||||
|
let
|
||||||
|
cfg = config.webapps;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
lib.webapps.homerServices =
|
||||||
|
let
|
||||||
|
apps = builtins.filter (a: a.dashboard.name != null) (lib.attrValues cfg.apps);
|
||||||
|
in
|
||||||
|
lib.forEach cfg.dashboardCategories (cat:
|
||||||
|
let
|
||||||
|
catApps = lib.sort (a: b: a.dashboard.name < b.dashboard.name) (
|
||||||
|
builtins.filter
|
||||||
|
(a:
|
||||||
|
a.dashboard.category != null && a.dashboard.category == cat.tag ||
|
||||||
|
a.dashboard.category == null && cat.tag == "misc")
|
||||||
|
apps);
|
||||||
|
in
|
||||||
|
{
|
||||||
|
name = cat.name;
|
||||||
|
items = lib.forEach catApps (a: {
|
||||||
|
name = a.dashboard.name;
|
||||||
|
icon = lib.optionalString (a.dashboard.icon != null) "fas fa-${a.dashboard.icon}";
|
||||||
|
url = a.dashboard.link;
|
||||||
|
target = "_blank";
|
||||||
|
type = a.dashboard.type;
|
||||||
|
method = "head";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,110 +1,54 @@
|
||||||
|
# Dashboard site
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.my.services.homer;
|
||||||
|
domain = config.networking.domain;
|
||||||
|
|
||||||
|
homeConfig = {
|
||||||
|
title = "Dashboard";
|
||||||
|
header = false;
|
||||||
|
footer = false;
|
||||||
|
connectivityCheck = true;
|
||||||
|
colums = "auto";
|
||||||
|
services = config.lib.webapps.homerServices;
|
||||||
|
};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
options.webapps = {
|
imports = [
|
||||||
dashboardCategories = lib.mkOption {
|
./config.nix
|
||||||
type = lib.types.listOf (lib.types.submodule {
|
];
|
||||||
options = {
|
|
||||||
name = lib.mkOption {
|
|
||||||
type = lib.types.str;
|
|
||||||
description = ''
|
|
||||||
Category name.
|
|
||||||
'';
|
|
||||||
example = "Applications";
|
|
||||||
};
|
|
||||||
tag = lib.mkOption {
|
|
||||||
type = lib.types.str;
|
|
||||||
description = ''
|
|
||||||
Category tag.
|
|
||||||
'';
|
|
||||||
example = "app";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
});
|
|
||||||
description = ''
|
|
||||||
App categories to display on the dashboard.
|
|
||||||
'';
|
|
||||||
example = [
|
|
||||||
{
|
|
||||||
name = "Application";
|
|
||||||
tag = "app";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
default = [ ];
|
|
||||||
};
|
|
||||||
|
|
||||||
apps = lib.mkOption {
|
options.my.services.homer = with lib; {
|
||||||
type = lib.types.attrsOf
|
enable = mkEnableOption "Homer Dashboard";
|
||||||
(lib.types.submodule {
|
|
||||||
options = {
|
|
||||||
dashboard.link = lib.mkOption {
|
|
||||||
type = lib.types.nullOr lib.types.str;
|
|
||||||
description = ''
|
|
||||||
Link to webapp
|
|
||||||
'';
|
|
||||||
example = "http://192.168.1.10:1234";
|
|
||||||
default = null;
|
|
||||||
};
|
|
||||||
dashboard.name = lib.mkOption {
|
|
||||||
type = lib.types.nullOr lib.types.str;
|
|
||||||
description = ''
|
|
||||||
Application name.
|
|
||||||
'';
|
|
||||||
example = "App";
|
|
||||||
default = null;
|
|
||||||
};
|
|
||||||
dashboard.category = lib.mkOption {
|
|
||||||
type = lib.types.nullOr lib.types.str;
|
|
||||||
description = ''
|
|
||||||
App category tag.
|
|
||||||
'';
|
|
||||||
example = "app";
|
|
||||||
default = null;
|
|
||||||
};
|
|
||||||
dashboard.icon = lib.mkOption {
|
|
||||||
type = lib.types.nullOr lib.types.str;
|
|
||||||
description = ''
|
|
||||||
Font Awesome application icon.
|
|
||||||
'';
|
|
||||||
example = "rss";
|
|
||||||
default = null;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
});
|
|
||||||
description = ''
|
|
||||||
Defines a web application.
|
|
||||||
'';
|
|
||||||
default = { };
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config =
|
config = lib.mkIf cfg.enable {
|
||||||
let
|
services.nginx.virtualHosts = {
|
||||||
cfg = config.webapps;
|
# This is not a subdomain, cannot use my nginx wrapper module
|
||||||
in {
|
${domain} = {
|
||||||
lib.webapps.homerServices =
|
forceSSL = true;
|
||||||
let
|
useACMEHost = domain;
|
||||||
apps = builtins.filter (a: a.dashboard.name != null) (lib.attrValues cfg.apps);
|
root = pkgs.homer;
|
||||||
in
|
locations."=/assets/config.yml" = {
|
||||||
lib.forEach cfg.dashboardCategories (cat:
|
alias = pkgs.writeText "homerConfig.yml" (builtins.toJSON homeConfig);
|
||||||
let
|
};
|
||||||
catApps = lib.sort (a: b: a.dashboard.name < b.dashboard.name) (
|
|
||||||
builtins.filter
|
|
||||||
(a:
|
|
||||||
a.dashboard.category != null && a.dashboard.category == cat.tag ||
|
|
||||||
a.dashboard.category == null && cat.tag == "misc")
|
|
||||||
apps);
|
|
||||||
in
|
|
||||||
{
|
|
||||||
name = cat.name;
|
|
||||||
items = lib.forEach catApps (a: {
|
|
||||||
name = a.dashboard.name;
|
|
||||||
icon = lib.optionalString (a.dashboard.icon != null) "fas fa-${a.dashboard.icon}";
|
|
||||||
url = a.dashboard.link;
|
|
||||||
target = "_blank";
|
|
||||||
type = "Ping";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
|
# redirect any other attempt to the main site
|
||||||
|
"${domain}-redirect" = {
|
||||||
|
forceSSL = true;
|
||||||
|
useACMEHost = domain;
|
||||||
|
default = true;
|
||||||
|
globalRedirect = "${domain}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
webapps = {
|
||||||
|
dashboardCategories = [
|
||||||
|
{ name = "Applications"; tag = "app"; }
|
||||||
|
{ name = "Media"; tag = "media"; }
|
||||||
|
{ name = "Infrastructure"; tag = "infra"; }
|
||||||
|
{ name = "Other"; tag = "other"; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
{ stdenv, fetchzip }:
|
{ stdenv, fetchzip }:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "homer";
|
pname = "homer";
|
||||||
version = "22.07.2";
|
version = "22.11.1";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
urls = [
|
urls = [
|
||||||
"https://github.com/bastienwirtz/homer/releases/download/v${version}/homer.zip"
|
"https://github.com/bastienwirtz/homer/releases/download/v${version}/homer.zip"
|
||||||
];
|
];
|
||||||
sha256 = "sha256-rmCqjWn7bbTESmOHTO5H7YVyZzny617pI0VdSlsqYGI=";
|
sha256 = "sha256-5W+bnPxXAv+svg3zrsiNTjZWrUuR39qKCnGGYY6pBjg=";
|
||||||
stripRoot = false;
|
stripRoot = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue