mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
treewide: fix statix errors
This commit is contained in:
parent
a4b8c2b8da
commit
743d7eead9
48 changed files with 72 additions and 82 deletions
|
@ -113,14 +113,11 @@
|
|||
apps);
|
||||
in
|
||||
{
|
||||
name = cat.name;
|
||||
inherit (cat) name;
|
||||
items = lib.forEach catApps (a: {
|
||||
name = a.dashboard.name;
|
||||
inherit (a.dashboard) name link type method;
|
||||
icon = lib.optionalString (a.dashboard.icon != null) "fas fa-${a.dashboard.icon}";
|
||||
url = a.dashboard.link;
|
||||
target = "_blank";
|
||||
type = a.dashboard.type;
|
||||
method = a.dashboard.method;
|
||||
});
|
||||
}
|
||||
);
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
cfg = config.my.services.homer;
|
||||
domain = config.networking.domain;
|
||||
inherit (config.networking) domain;
|
||||
|
||||
homeConfig = {
|
||||
title = "Dashboard";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue