From a16b5dfe64929131984e79df9a1825f0413b1865 Mon Sep 17 00:00:00 2001 From: makefu Date: Tue, 11 Sep 2018 20:42:55 +0200 Subject: add README,stand-alone example --- example/stand-alone/configuration.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 example/stand-alone/configuration.nix (limited to 'example/stand-alone/configuration.nix') diff --git a/example/stand-alone/configuration.nix b/example/stand-alone/configuration.nix new file mode 100644 index 0000000..2ee1597 --- /dev/null +++ b/example/stand-alone/configuration.nix @@ -0,0 +1,17 @@ +{ pkgs, ... }: +let + disko = (builtins.fetchGit { + url = https://cgit.lassul.us/disko/; + rev = "88f56a0b644dd7bfa8438409bea5377adef6aef4"; + }) + "/lib"; + cfg = builtins.fromJSON ./tsp-disk.json; +in { + imports = [ + (disko.config cfg) + ]; + environment.systemPackages = with pkgs;[ + (pkgs.writeScriptBin "tsp-create" (disko.create cfg)) + (pkgs.writeScriptBin "tsp-mount" (disko.mount cfg)) + ]; +} + -- cgit v1.2.3