Code Monkey home page Code Monkey logo

icehouse's Introduction

Ice House

Nix Flakes Ready Built With Snowfall

  

Cold storage made easy.

Note

Ice House requires ZFS support to function properly.

Try Without Installing

You can try Ice House without committing to installing it on your system by running the following command.

nix run github:snowfallorg/icehouse#icehouse

Install Ice House

Nix Profile

You can install this package imperatively with the following command.

nix profile install github:snowfallorg/icehouse

Nix Configuration

You can install this package by adding it as an input to your Nix flake.

{
	description = "My system flake";

	inputs = {
		nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05";

		# Snowfall Lib is not required, but will make configuration easier for you.
		snowfall-lib = {
			url = "github:snowfallorg/lib";
			inputs.nixpkgs.follows = "nixpkgs";
		};

		icehouse = {
			url = "github:snowfallorg/icehouse";
			inputs.nixpkgs.follows = "nixpkgs";
		};
	};

	outputs = inputs:
		inputs.snowfall-lib.mkFlake {
			inherit inputs;
			src = ./.;

			overlays = with inputs; [
				# Use the overlay provided by this flake.
				icehouse.overlay

				# There is also a named overlay, though the output is the same.
				icehouse.overlays."package/icehouse"
			];
		};
}

If you've added the overlay from this flake, then in your system configuration you can add the snowfallorg.icehouse package.

{ pkgs }:

{
	environment.systemPackages = with pkgs; [
		snowfallorg.icehouse
	];
}

icehouse's People

Contributors

jakehamilton avatar tqwewe avatar

Stargazers

Sebastian Moser avatar Jake A. avatar Rusty avatar srestegosaurio avatar Luís Guimarães avatar  avatar Daniel avatar Edgars Burtnieks avatar Emmanuel Salomon avatar  avatar vi|vi|vi avatar カシオ 金城 大関 avatar Matt avatar  avatar eve avatar Ernad Husremović avatar  avatar

Watchers

Izel Nakri | izelnakri.eth avatar  avatar  avatar

Forkers

tqwewe fvkd

icehouse's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.