{"id":18980591,"url":"https://github.com/snowfallorg/icehouse","last_synced_at":"2025-10-05T10:07:49.223Z","repository":{"id":82459863,"uuid":"590073826","full_name":"snowfallorg/icehouse","owner":"snowfallorg","description":"Cold storage made easy.","archived":false,"fork":false,"pushed_at":"2024-05-25T22:21:57.000Z","size":27,"stargazers_count":26,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-16T15:15:11.075Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/snowfallorg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-01-17T15:48:57.000Z","updated_at":"2025-03-26T20:03:29.000Z","dependencies_parsed_at":"2025-04-16T12:48:35.699Z","dependency_job_id":"8a5058d6-2513-4982-b4e4-ee76ba8e0c38","html_url":"https://github.com/snowfallorg/icehouse","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Ficehouse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Ficehouse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Ficehouse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Ficehouse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/snowfallorg","download_url":"https://codeload.github.com/snowfallorg/icehouse/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249774516,"owners_count":21323634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T16:07:11.611Z","updated_at":"2025-10-05T10:07:49.133Z","avatar_url":"https://github.com/snowfallorg.png","language":"Shell","funding_links":[],"categories":["Shell"],"sub_categories":[],"readme":"# Ice House\n\n\u003ca href=\"https://nixos.wiki/wiki/Flakes\" target=\"_blank\"\u003e\n\t\u003cimg alt=\"Nix Flakes Ready\" src=\"https://img.shields.io/static/v1?logo=nixos\u0026logoColor=d8dee9\u0026label=Nix%20Flakes\u0026labelColor=5e81ac\u0026message=Ready\u0026color=d8dee9\u0026style=for-the-badge\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://github.com/snowfallorg/lib\" target=\"_blank\"\u003e\n\t\u003cimg alt=\"Built With Snowfall\" src=\"https://img.shields.io/static/v1?label=Built%20With\u0026labelColor=5e81ac\u0026message=Snowfall\u0026color=d8dee9\u0026style=for-the-badge\"\u003e\n\u003c/a\u003e\n\n\u003cp\u003e\n\u003c!--\n\tThis paragraph is not empty, it contains an em space (UTF-8 8195) on the next line in order\n\tto create a gap in the page.\n--\u003e\n  \n\u003c/p\u003e\n\n\u003e Cold storage made easy.\n\n\u003e **Note**\n\u003e\n\u003e Ice House requires ZFS support to function properly.\n\n## About\n\nIce House allows you to easily and quickly initialize drives for use as backup and to create incremental\nsnapshots that are stored on them. For usage information, see `icehouse --help`.\n\nTypically, you will want to run `icehouse init --drive /dev/sdx --pool backup` to initialize a new ZFS\npool on a drive. This process includes LUKS encryption, requiring a password during configuration. Once\ninitialized, you can begin backing up any system that uses ZFS by running\n`icehouse backup --drive /dev/sdx --pool backup`.\n\n## Try Without Installing\n\nYou can try Ice House without committing to installing it on your system by running the following command.\n\n```bash\nnix run github:snowfallorg/icehouse#icehouse\n```\n\n## Install Ice House\n\n### Nix Profile\n\nYou can install this package imperatively with the following command.\n\n```bash\nnix profile install github:snowfallorg/icehouse\n```\n\n## Nix Configuration\n\nYou can install this package by adding it as an input to your Nix flake.\n\n```nix\n{\n\tdescription = \"My system flake\";\n\n\tinputs = {\n\t\tnixpkgs.url = \"github:nixos/nixpkgs/nixos-22.05\";\n\n\t\t# Snowfall Lib is not required, but will make configuration easier for you.\n\t\tsnowfall-lib = {\n\t\t\turl = \"github:snowfallorg/lib\";\n\t\t\tinputs.nixpkgs.follows = \"nixpkgs\";\n\t\t};\n\n\t\ticehouse = {\n\t\t\turl = \"github:snowfallorg/icehouse\";\n\t\t\tinputs.nixpkgs.follows = \"nixpkgs\";\n\t\t};\n\t};\n\n\toutputs = inputs:\n\t\tinputs.snowfall-lib.mkFlake {\n\t\t\tinherit inputs;\n\t\t\tsrc = ./.;\n\n\t\t\toverlays = with inputs; [\n\t\t\t\t# Use the overlay provided by this flake.\n\t\t\t\ticehouse.overlay\n\n\t\t\t\t# There is also a named overlay, though the output is the same.\n\t\t\t\ticehouse.overlays.\"package/icehouse\"\n\t\t\t];\n\t\t};\n}\n```\n\nIf you've added the overlay from this flake, then in your system configuration you can add the `snowfallorg.icehouse` package.\n\n```nix\n{ pkgs }:\n\n{\n\tenvironment.systemPackages = with pkgs; [\n\t\tsnowfallorg.icehouse\n\t];\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnowfallorg%2Ficehouse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsnowfallorg%2Ficehouse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnowfallorg%2Ficehouse/lists"}