diff options
author | makefu <github@syntax-fehler.de> | 2017-05-12 11:32:12 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-05-12 11:32:12 +0200 |
commit | 89b254d485c8babbd7c4f329c52681dd9cc1a8e2 (patch) | |
tree | d6e5cbf9f36f8e4ebf4b0e073b428917f6c80eb0 /makefu | |
parent | 7a7612fb4d32349ba0ad87531845e65a8ee54deb (diff) |
m 2 backup: provide borgbackup
Diffstat (limited to 'makefu')
-rw-r--r-- | makefu/2configs/backup.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/makefu/2configs/backup.nix b/makefu/2configs/backup.nix index 9ed890326..1cc78bfc1 100644 --- a/makefu/2configs/backup.nix +++ b/makefu/2configs/backup.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: +{ config, lib, pkgs, ... }: with import <stockholm/lib>; let # preparation: @@ -32,4 +32,7 @@ in { # wry-to-omo_root = defaultPull config.krebs.hosts.wry "/"; gum-to-omo_root = defaultPull config.krebs.hosts.gum "/"; }; + environment.systemPackages = [ + pkgs.borgbackup + ]; } |