diff options
author | makefu <github@syntax-fehler.de> | 2018-09-13 16:17:39 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-09-13 16:17:39 +0200 |
commit | b658de054d724064a3531de2d4a53a7a28cdc6ac (patch) | |
tree | 79d7481b6246065f5edeeb0e50288542a0603aa8 /makefu/1systems/omo/hw/tsp-tools.nix | |
parent | 859f98583788a9324be0e8c52d36a6bb812273fe (diff) |
ma omo.r: split hardware config, use disko for tsp hardware
Diffstat (limited to 'makefu/1systems/omo/hw/tsp-tools.nix')
-rw-r--r-- | makefu/1systems/omo/hw/tsp-tools.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/makefu/1systems/omo/hw/tsp-tools.nix b/makefu/1systems/omo/hw/tsp-tools.nix new file mode 100644 index 000000000..6579edd9d --- /dev/null +++ b/makefu/1systems/omo/hw/tsp-tools.nix @@ -0,0 +1,11 @@ +let + disko = import (builtins.fetchGit { + url = https://cgit.lassul.us/disko/; + rev = "9c9b62e15e4ac11d4379e66b974f1389daf939fe"; + }); + + cfg = builtins.fromJSON (builtins.readFile ../../hardware/tsp-disk.json); +in '' +${disko.create cfg} +${disko.mount cfg} +'' |