mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2024-11-22 03:51:27 +00:00
Fixed filenames
This commit is contained in:
parent
101da8ae50
commit
2a330d3855
23
nixos-infect
23
nixos-infect
|
@ -12,9 +12,10 @@ makeConf() {
|
|||
mkdir -p /etc/nixos/mailserver/system
|
||||
mkdir -p /etc/nixos/letsencrypt
|
||||
mkdir /etc/nixos/backup
|
||||
mkdir /etc/nixos/passmgr/
|
||||
mkdir /etc/nixos/passmgr
|
||||
mkdir /etc/nixos/nginx
|
||||
mkdir /etc/nixos/git
|
||||
mkdir /etc/nixos/nextcloud
|
||||
|
||||
# Prevent grep for sending error code 1 (and halting execution) when no lines are selected : https://www.unix.com/man-page/posix/1P/grep
|
||||
local IFS=$'\n'
|
||||
|
@ -33,15 +34,15 @@ makeConf() {
|
|||
./hardware-configuration.nix
|
||||
$network_import
|
||||
$NIXOS_IMPORT
|
||||
$mailServer
|
||||
$api
|
||||
$letsencryptACME
|
||||
$letsencryptCertbot
|
||||
$restic
|
||||
$bitwarden
|
||||
$nginx
|
||||
$nextcloud
|
||||
$gitea
|
||||
./mailserver/system/mailserver.nix
|
||||
./api/uwsgi.nix
|
||||
./letsencrypt/acme.nix
|
||||
./letsencrypt/certbot.nix
|
||||
./backup/restic.nix
|
||||
./passmgr/bitwarden.nix
|
||||
./nginx/nginx.nix
|
||||
./nextcloud/nextcloud.nix
|
||||
./git/gitea.nix
|
||||
];
|
||||
|
||||
boot.cleanTmpDir = true;
|
||||
|
@ -325,7 +326,7 @@ proxy_headers_hash_bucket_size 128;
|
|||
}
|
||||
EOF
|
||||
|
||||
cat > /etc/nixos/backup/nextcloud.nix << EOF
|
||||
cat > /etc/nixos/nextcloud/nextcloud.nix << EOF
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
services.nextcloud = {
|
||||
|
|
Loading…
Reference in a new issue