test out restic

This commit is contained in:
Tyler Starr 2024-07-21 19:58:57 -07:00
parent e3bb572934
commit 6cba3b2356
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,6 @@
{ config, pkgs, user, lib, ... }:
{
environment.systemPackages = with pkgs; [
restic # Fast and secure backup program
];
}

View File

@ -1,4 +1,4 @@
{ ... }:
{
imports = [ ./configuration.nix ./home-configuration.nix ];
imports = [ ./backup.nix ./configuration.nix ./home-configuration.nix ];
}