1
0
Fork 0

Remove fail on error on start-haven script

This commit is contained in:
Aires 2024-06-19 11:27:46 -04:00
parent a5d5047dbd
commit ab288d9aee
3 changed files with 10 additions and 14 deletions

View file

@ -138,11 +138,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1718526747, "lastModified": 1718788307,
"narHash": "sha256-sKrD/utGvmtQALvuDj4j0CT3AJXP1idOAq2p+27TpeE=", "narHash": "sha256-SqiOz0sljM0GjyQEVinPXQxaGcbOXw5OgpCWGPgh/vo=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "0a7ffb28e5df5844d0e8039c9833d7075cdee792", "rev": "d7830d05421d0ced83a0f007900898bdcaf2a2ca",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -252,11 +252,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1718548414, "lastModified": 1718806950,
"narHash": "sha256-1obyIuQPR/Kq1j5/i/5EuAfQrDwjYnjCDG8iLtXmBhQ=", "narHash": "sha256-E+W/kbedZAiOuPtT+KQRposLaXGDLd7lyK7oL3IH/5U=",
"ref": "master", "ref": "master",
"rev": "cde8f7e11f036160b0fd6a9e07dc4c8e4061cf06", "rev": "acb4f0e9bfa8ca2d6fca5e692307b5c994e7dbda",
"revCount": 1719, "revCount": 1720,
"type": "git", "type": "git",
"url": "https://github.com/NixOS/nixos-hardware" "url": "https://github.com/NixOS/nixos-hardware"
}, },
@ -300,11 +300,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1718318537, "lastModified": 1718530797,
"narHash": "sha256-4Zu0RYRcAY/VWuu6awwq4opuiD//ahpc2aFHg2CWqFY=", "narHash": "sha256-pup6cYwtgvzDpvpSCFh1TEUjw2zkNpk8iolbKnyFmmU=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e9ee548d90ff586a6471b4ae80ae9cfcbceb3420", "rev": "b60ebf54c15553b393d144357375ea956f89e9a9",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -7,9 +7,6 @@ if [ "$(id -u)" != "0" ]; then
exit 1 exit 1
fi fi
# Immediately exit on any errors
set -e
# Unlock and mount storage directory if we haven't already # Unlock and mount storage directory if we haven't already
if [ -e "/dev/mapper/storage" ]; then if [ -e "/dev/mapper/storage" ]; then
echo "Storage partition already mounted." echo "Storage partition already mounted."

View file

@ -63,7 +63,6 @@ in
services = { services = {
forgejo = { forgejo = {
enable = true; enable = true;
lfs.enable = true;
settings.server = { settings.server = {
DOMAIN = cfg.domain; DOMAIN = cfg.domain;
ROOT_URL = cfg.url; ROOT_URL = cfg.url;