diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-30 19:35:28 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-30 19:38:09 +0200 |
commit | a619a84496ebf4692c103bf8e229e9743dfcf185 (patch) | |
tree | dcfe3e1b12916467aef3a632069fed3908eff159 /pkgs/by-name/sn/snap-sync-forked/package.nix | |
parent | modules/backup: Port to storagebox (diff) | |
download | nixos-config-a619a84496ebf4692c103bf8e229e9743dfcf185.zip |
pkgs/snap-sync-forked: Drop
This was only needed by the backup module. Should I require support for on-premise backups, setting up a local restic repo would be easier.
Diffstat (limited to 'pkgs/by-name/sn/snap-sync-forked/package.nix')
-rw-r--r-- | pkgs/by-name/sn/snap-sync-forked/package.nix | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/pkgs/by-name/sn/snap-sync-forked/package.nix b/pkgs/by-name/sn/snap-sync-forked/package.nix deleted file mode 100644 index 4be1b222..00000000 --- a/pkgs/by-name/sn/snap-sync-forked/package.nix +++ /dev/null @@ -1,46 +0,0 @@ -# nixos-config - My current NixOS configuration -# -# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de> -# SPDX-License-Identifier: GPL-3.0-or-later -# -# This file is part of my nixos-config. -# -# You should have received a copy of the License along with this program. -# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. -{ - writeShellApplication, - bash, - btrfs-progs, - coreutils, - gawk, - gnugrep, - snapper, - util-linux, - # optional - libnotify, - openssh, - pv, - rsync, - sudo, -}: -writeShellApplication { - name = "snap-sync-forked"; - text = builtins.readFile ./snap-sync-forked.sh; - inheritPath = false; - runtimeInputs = [ - bash - btrfs-progs - coreutils - gawk - gnugrep - snapper - util-linux - - # optional: - libnotify - openssh - pv - rsync - sudo - ]; -} |