fix
This commit is contained in:
parent
3f537af9db
commit
b57cf3ae96
2
justfile
2
justfile
|
@ -28,7 +28,7 @@ update:
|
||||||
| gum choose --no-limit --height=15 \
|
| gum choose --no-limit --height=15 \
|
||||||
| xargs nix flake update --commit-lock-file
|
| xargs nix flake update --commit-lock-file
|
||||||
|
|
||||||
build hostname=`if test -z "$IS_REMOTE_ENV"; then just _a_host; else echo; fi`:
|
build hostname=`if test -z "${IS_REMOTE_ENV:-}"; then just _a_host; else echo; fi`:
|
||||||
nixos-rebuild build --accept-flake-config --show-trace --flake .#"{{hostname}}"
|
nixos-rebuild build --accept-flake-config --show-trace --flake .#"{{hostname}}"
|
||||||
|
|
||||||
build-no-remote-builders hostname=`if test -z "$IS_REMOTE_ENV"; then just _a_host; else echo; fi`:
|
build-no-remote-builders hostname=`if test -z "$IS_REMOTE_ENV"; then just _a_host; else echo; fi`:
|
||||||
|
|
|
@ -27,6 +27,8 @@
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
libheif # HEIF thumbnails
|
libheif # HEIF thumbnails
|
||||||
gnomeExtensions.appindicator
|
gnomeExtensions.appindicator
|
||||||
|
|
||||||
|
desktop-file-utils # update-desktop-database
|
||||||
];
|
];
|
||||||
|
|
||||||
# an attempt to make nautilus discover new files, but it proved to be a freebsd-linux incompatiblity
|
# an attempt to make nautilus discover new files, but it proved to be a freebsd-linux incompatiblity
|
||||||
|
|
|
@ -8,7 +8,7 @@ in
|
||||||
#(lib.mapAttrsToList (domain: vhost: [ domain ] ++ vhost.serverAliases))
|
#(lib.mapAttrsToList (domain: vhost: [ domain ] ++ vhost.serverAliases))
|
||||||
(lib.mapAttrsToList (domain: vhost: [ domain ]))
|
(lib.mapAttrsToList (domain: vhost: [ domain ]))
|
||||||
lib.flatten
|
lib.flatten
|
||||||
(builtins.filter (domain: domain != ""))
|
(builtins.filter (domain: domain != "" && domain != "_"))
|
||||||
(lib.sort (x: y: x<y))
|
(lib.sort (x: y: x<y))
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ in
|
||||||
else if lib.hasAttrByPath [name "package"] config.services
|
else if lib.hasAttrByPath [name "package"] config.services
|
||||||
then config.services.${name}.package.meta.description
|
then config.services.${name}.package.meta.description
|
||||||
else "";
|
else "";
|
||||||
mkRow = domain: ''<tr><td><a href="//${domain}">${getName domain}<span style=\"opacity: 0.65;\">.${getDomain domain}</span></a><td>${getDesc domain}'';
|
mkRow = domain: ''<tr><td><a href="//${domain}">${getName domain}<span style="opacity: 0.65;">.${getDomain domain}</span></a><td>${getDesc domain}'';
|
||||||
in pkgs.writeTextDir "index.html" ''
|
in pkgs.writeTextDir "index.html" ''
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<table>
|
<table>
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{ config, pkgs, lib, mkDomain, ... }:
|
{ config, pkgs, lib, mkDomain, ... }:
|
||||||
|
|
||||||
|
lib.mkIf pkgs.unstable.cinny.meta.available # no CVE's thank you
|
||||||
|
|
||||||
{
|
{
|
||||||
# Cinny
|
# Cinny
|
||||||
# Yet another Matrix client for the web
|
# Yet another Matrix client for the web
|
||||||
|
|
Loading…
Reference in New Issue