Compare commits

..

No commits in common. "d742bcafc38ce3a554c954d0c454c19e1d40e353" and "feb0f86e9553134469cfe05f95c7b15bfc5551d2" have entirely different histories.

4 changed files with 3 additions and 29 deletions

View file

@ -8,21 +8,17 @@
alsa-utils alsa-utils
anki anki
asciinema asciinema
bacon
cachix cachix
calc calc
cargo-info
cbonsai cbonsai
cinny-desktop cinny-desktop
cmus cmus
comma comma
difftastic difftastic
dua
element element
element-desktop element-desktop
evince evince
eza eza
fselect
gcc gcc
gh gh
grc grc
@ -45,7 +41,6 @@
librewolf librewolf
links2 links2
linuxHeaders linuxHeaders
mprocs
mpv mpv
networkmanagerapplet networkmanagerapplet
nil nil
@ -61,11 +56,9 @@
pfetch pfetch
playerctl playerctl
polkit polkit
presenterm
pulsemixer pulsemixer
ripgrep ripgrep
rmpc rmpc
rusty-man
signal-desktop signal-desktop
smartmontools smartmontools
telegram-desktop telegram-desktop
@ -76,7 +69,6 @@
v4l-utils v4l-utils
vlc vlc
vscodium vscodium
wiki-tui
wireguard-tools wireguard-tools
wordgrinder wordgrinder
xournalpp xournalpp

View file

@ -98,5 +98,5 @@
''; '';
}; };
in { in {
# environment.systemPackages = [jj-wrapped]; environment.systemPackages = [jj-wrapped];
} }

View file

@ -14,6 +14,7 @@
port = 3000; port = 3000;
domain = "copeberg.org"; domain = "copeberg.org";
img = ./img; img = ./img;
acmeRoot = "/var/lib/acme/challenges-forgejo";
dataDir = "/srv/data/forgejo"; dataDir = "/srv/data/forgejo";
dumpDir = "/srv/data/forgejo-dump"; dumpDir = "/srv/data/forgejo-dump";
in { in {
@ -106,7 +107,7 @@ in {
}; };
dump = { dump = {
enable = false; enable = true;
backupDir = dumpDir; backupDir = dumpDir;
interval = "06:00"; interval = "06:00";
type = "tar.xz"; type = "tar.xz";

View file

@ -4,7 +4,6 @@
pkgs, pkgs,
... ...
}: let }: let
inherit (builtins) fetchurl;
inherit (lib.modules) mkIf; inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption; inherit (lib.options) mkEnableOption;
@ -67,24 +66,6 @@ in {
}) })
]; ];
}; };
dashboards.settings.providers = [
{
# taken from https://grafana.com/grafana/dashboards/1860-node-exporter-full/
name = "system-status";
path = fetchurl {
url = "https://grafana.com/api/dashboards/1860/revisions/40/download";
hash = "sha256-zTsS/UEX6W8+qK3l2GtvdDfmwS8eVnnyZxZ++LtRLBA=";
};
}
{
# taken from https://grafana.com/grafana/dashboards/1860-node-exporter-full/
name = "PostgreSQL-status";
path = fetchurl {
url = "https://grafana.com/api/dashboards/9628/revisions/8/download";
hash = "sha256-UhusNAZbyt7fJV/DhFUK4FKOmnTpG0R15YO2r+nDnMc=";
};
}
];
}; };
}; };
services.nginx = { services.nginx = {