diff options
author | makefu <github@syntax-fehler.de> | 2018-01-03 14:41:33 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-01-03 14:41:33 +0100 |
commit | f56733184ef40fb6841b903f6e8761b03640cceb (patch) | |
tree | e408e765c0dadeb35ba017ad5ddb374c528916e7 /makefu/2configs | |
parent | e6d56100ae923e9c00ec190e7cfb90594dc768a9 (diff) |
ma tools: add console tools
Diffstat (limited to 'makefu/2configs')
-rw-r--r-- | makefu/2configs/tools/all.nix | 1 | ||||
-rw-r--r-- | makefu/2configs/tools/consoles.nix | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/makefu/2configs/tools/all.nix b/makefu/2configs/tools/all.nix index 1ac22e34c..2bb438f16 100644 --- a/makefu/2configs/tools/all.nix +++ b/makefu/2configs/tools/all.nix @@ -1,6 +1,7 @@ { imports = [ ./android-pentest.nix + ./consoles.nix ./core.nix ./core-gui.nix ./dev.nix diff --git a/makefu/2configs/tools/consoles.nix b/makefu/2configs/tools/consoles.nix new file mode 100644 index 000000000..76eb0044c --- /dev/null +++ b/makefu/2configs/tools/consoles.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: +{ + users.users.makefu.packages = with pkgs; [ + opl-utils + hdl-dump + ]; +} |