Compare commits
4 commits
feb0f86e95
...
d742bcafc3
Author | SHA1 | Date | |
---|---|---|---|
d742bcafc3 |
|||
89b240ddd0 |
|||
7c04c06766 |
|||
11d3888cc1 |
4 changed files with 29 additions and 3 deletions
|
@ -8,17 +8,21 @@
|
|||
alsa-utils
|
||||
anki
|
||||
asciinema
|
||||
bacon
|
||||
cachix
|
||||
calc
|
||||
cargo-info
|
||||
cbonsai
|
||||
cinny-desktop
|
||||
cmus
|
||||
comma
|
||||
difftastic
|
||||
dua
|
||||
element
|
||||
element-desktop
|
||||
evince
|
||||
eza
|
||||
fselect
|
||||
gcc
|
||||
gh
|
||||
grc
|
||||
|
@ -41,6 +45,7 @@
|
|||
librewolf
|
||||
links2
|
||||
linuxHeaders
|
||||
mprocs
|
||||
mpv
|
||||
networkmanagerapplet
|
||||
nil
|
||||
|
@ -56,9 +61,11 @@
|
|||
pfetch
|
||||
playerctl
|
||||
polkit
|
||||
presenterm
|
||||
pulsemixer
|
||||
ripgrep
|
||||
rmpc
|
||||
rusty-man
|
||||
signal-desktop
|
||||
smartmontools
|
||||
telegram-desktop
|
||||
|
@ -69,6 +76,7 @@
|
|||
v4l-utils
|
||||
vlc
|
||||
vscodium
|
||||
wiki-tui
|
||||
wireguard-tools
|
||||
wordgrinder
|
||||
xournalpp
|
||||
|
|
|
@ -98,5 +98,5 @@
|
|||
'';
|
||||
};
|
||||
in {
|
||||
environment.systemPackages = [jj-wrapped];
|
||||
# environment.systemPackages = [jj-wrapped];
|
||||
}
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
port = 3000;
|
||||
domain = "copeberg.org";
|
||||
img = ./img;
|
||||
acmeRoot = "/var/lib/acme/challenges-forgejo";
|
||||
dataDir = "/srv/data/forgejo";
|
||||
dumpDir = "/srv/data/forgejo-dump";
|
||||
in {
|
||||
|
@ -107,7 +106,7 @@ in {
|
|||
};
|
||||
|
||||
dump = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
backupDir = dumpDir;
|
||||
interval = "06:00";
|
||||
type = "tar.xz";
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (builtins) fetchurl;
|
||||
inherit (lib.modules) mkIf;
|
||||
inherit (lib.options) mkEnableOption;
|
||||
|
||||
|
@ -66,6 +67,24 @@ 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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue