diff options
author | makefu <github@syntax-fehler.de> | 2017-09-04 14:37:00 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-09-06 11:05:45 +0200 |
commit | 1874d353813f2bb596f91fb8aa593aa3656d6f59 (patch) | |
tree | 9354c5cd2493e004f9abb6b8dabf27ef48ce7c12 /makefu | |
parent | 3e429bdead5eb70ca288f9a3898ff2fb5a5c161e (diff) |
ma tools: add sec-gui
Diffstat (limited to 'makefu')
-rw-r--r-- | makefu/2configs/tools/all.nix | 2 | ||||
-rw-r--r-- | makefu/2configs/tools/core-gui.nix | 1 | ||||
-rw-r--r-- | makefu/2configs/tools/sec-gui.nix | 8 | ||||
-rw-r--r-- | makefu/2configs/tools/sec.nix | 1 |
4 files changed, 11 insertions, 1 deletions
diff --git a/makefu/2configs/tools/all.nix b/makefu/2configs/tools/all.nix index 31c959d47..c7a116918 100644 --- a/makefu/2configs/tools/all.nix +++ b/makefu/2configs/tools/all.nix @@ -8,5 +8,7 @@ ./games.nix ./media.nix ./sec.nix + ./sec-gui.nix + ./studio.nix ]; } diff --git a/makefu/2configs/tools/core-gui.nix b/makefu/2configs/tools/core-gui.nix index f409b68a2..0538647ae 100644 --- a/makefu/2configs/tools/core-gui.nix +++ b/makefu/2configs/tools/core-gui.nix @@ -20,6 +20,5 @@ xdotool xorg.xbacklight scrot - wireshark ]; } diff --git a/makefu/2configs/tools/sec-gui.nix b/makefu/2configs/tools/sec-gui.nix new file mode 100644 index 000000000..2db3e4391 --- /dev/null +++ b/makefu/2configs/tools/sec-gui.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: + +{ + krebs.per-user.makefu.packages = with pkgs; [ + tpmmanager + wireshark + ]; +} diff --git a/makefu/2configs/tools/sec.nix b/makefu/2configs/tools/sec.nix index 5fb9a5fc8..817cd9ead 100644 --- a/makefu/2configs/tools/sec.nix +++ b/makefu/2configs/tools/sec.nix @@ -13,5 +13,6 @@ thc-hydra borgbackup ledger + u3_tool ]; } |