Files
restic/flake.nix
2026-05-16 09:41:45 -04:00

21 lines
399 B
Nix

{
description = "Restic backup for starbak -> thalassa.local";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = { self, nixpkgs }:
let
system = "aarch64-darwin";
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.default = pkgs.mkShell {
packages = [
pkgs.restic
];
};
};
}