Compare commits

..

48 commits

Author SHA1 Message Date
ed8f37b9d0 Skip backup questions if specified 2024-11-23 17:26:12 +01:00
06d0082f05 Create backup whitelist for docker-compose 2024-11-23 16:57:11 +01:00
32b45e47fa Add a profile for the server 2024-11-22 17:31:18 +01:00
a55105d873 Add options for enabling docker-compose services 2024-11-22 17:31:08 +01:00
b92c3ce1ac Add scripts for installing woodpecker 2024-11-22 17:29:45 +01:00
7687708ad3 Add scripts for installing wekan 2024-11-22 01:54:50 +01:00
244881ab45 Add scripts for installing TrackMania server 2024-11-20 00:33:09 +01:00
6f7d60c51e Replace yq with go-yq 2024-11-20 00:30:08 +01:00
ddef21cf08 Add scripts for installing TeamSpeak 2024-11-13 18:18:15 +01:00
179da24cd1 Add scripts for installing ryot 2024-11-13 17:39:21 +01:00
7f23035ec8 Add scripts for installing nextcloud 2024-11-13 16:25:39 +01:00
8096cf3c6c Restructure service overrides 2024-11-13 16:22:57 +01:00
a168b71566 Add scripts for installing Minecraft 2024-11-10 13:00:23 +01:00
c93e900f18 Add settings for allowing VPN access in lxc 2024-11-10 12:56:48 +01:00
e1e15ee178 Improve look & feel of lxc config 2024-11-10 12:56:34 +01:00
31896b8ab7 Add scripts for installing jellyfin 2024-11-10 12:33:36 +01:00
a09f34c085 Add a script for installing forgejo 2024-11-07 23:58:06 +01:00
e27f2a51a8 Add scripts for installing drone 2024-11-07 18:33:16 +01:00
b59eec418d Allow configuring services with multiple domains 2024-11-07 11:54:50 +01:00
83f70f4040 Allow specifying domains per service 2024-11-07 03:31:48 +01:00
3d48e5c8b2 Fetch FQDN from configuration 2024-11-07 03:01:45 +01:00
2c3c0b24e1 Generate nginx config using printf 2024-11-07 02:40:29 +01:00
9cd3ebcdc9 Add a function for initializing the service installation 2024-11-07 02:39:37 +01:00
e3758bb686 Rename public API 2024-11-06 19:34:27 +01:00
d7e65c5b70 Add /etc/localtime file in test container 2024-11-06 03:33:01 +01:00
357bdd287d Add a script for installing anki-sync 2024-11-06 03:32:45 +01:00
1a84eb4b02 Add a script for installing nginx 2024-11-06 01:13:50 +01:00
4e8c931ada Add a script for testing the Arch installation 2024-11-05 17:47:45 +01:00
51dc9b1764 Add scripts for installing Arch 2024-11-05 17:47:39 +01:00
2aa8f27187 Add a function for declaring software dependencies 2024-11-05 17:45:13 +01:00
54e9fed66e Ask for config profile in tmux 2024-11-05 17:39:06 +01:00
355cadc13b Uninstall nixpkgs only after install 2024-11-04 01:34:43 +01:00
d255addea7 Initialize and dispose actions properly 2024-11-04 01:34:22 +01:00
18f3272f51 Inherit CONFIG_NAME properly 2024-11-03 23:41:32 +01:00
0bfa2d4d2d Prevent early disposal 2024-11-03 23:41:17 +01:00
74b3960a82 Download nixpkgs only if necessary 2024-11-03 22:37:33 +01:00
185ceb4455 Fix permissions issues 2024-11-03 22:37:22 +01:00
107895d594 Rename hooks 2024-11-03 22:36:30 +01:00
42d3ed6a66 Change global git config as root 2024-11-03 22:34:39 +01:00
9635750756 Create a separate config file for desktops 2024-11-03 22:33:44 +01:00
cd50d55959 Initialize installer properly 2024-11-03 22:32:47 +01:00
267f79b2a6 Add a script for setting up vaultwarden 2024-11-03 03:14:47 +01:00
0182aa1fa5 Handle nix cache properly 2024-11-03 00:39:23 +01:00
46540b9a9d Allow fetching program config with named args 2024-11-02 22:45:22 +01:00
45d4b159e1 Add scripts for backing up the home 2024-11-02 21:18:00 +01:00
a1a826801d Allow preparing backups 2024-11-02 20:56:54 +01:00
d65418b712 Add backup capability for aliae 2024-11-02 18:26:33 +01:00
3dff608c34 Add support for backing up and restoring software 2024-11-02 18:26:21 +01:00
2 changed files with 1 additions and 2 deletions

View file

@ -26,7 +26,6 @@ in {
anki-sync.enable = mkEnableOption "Anki Sync server";
drone.enable = mkEnableOption "drone server";
forgejo.enable = mkEnableOption "Forgejo server";
jellyfin.enable = mkEnableOption "Jellyfin media server";
minecraft.enable = mkEnableOption "Minecraft server";
nextcloud.enable = mkEnableOption "Nextcloud server";
teamspeak.enable = mkEnableOption "TeamSpeak server";

View file

@ -44,7 +44,7 @@ function restoreFiles
end
function createArchive -a path
runRestorationCommand sh -c "tee $(string escape -- "$path") >/dev/null"
runRestorationCommand tee "$path" \>/dev/null
end
function fetchArchive