mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
30 lines
672 B
Nix
30 lines
672 B
Nix
|
{
|
||
|
description = "Nix shell for file sync tools";
|
||
|
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
|
||
|
flake-utils.url = "github:numtide/flake-utils";
|
||
|
};
|
||
|
|
||
|
outputs =
|
||
|
{ nixpkgs
|
||
|
, flake-utils
|
||
|
}:
|
||
|
|
||
|
flake-utils.lib.eachDefaultSystem (system:
|
||
|
let
|
||
|
pkgs = import nixpkgs { inherit system; };
|
||
|
in
|
||
|
{
|
||
|
devShells.default = pkgs.mkShell {
|
||
|
packages = with pkgs; [
|
||
|
croc # Terminal file transfer
|
||
|
mktorrent # Terminal torrent creator
|
||
|
rclone # Terminal cloud storage client
|
||
|
s3cmd # Terminal cloud storage client
|
||
|
zsync # Terminal file sync
|
||
|
];
|
||
|
};
|
||
|
});
|
||
|
}
|