diff options
author | lassulus <lass@blue.r> | 2018-06-13 21:25:24 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-06-13 21:25:24 +0200 |
commit | 006a3174eccecfee96e7b4fb9c818043a0334535 (patch) | |
tree | 516b9d74a3ca3d5ad9113aa84a89756ed7b85a23 /makefu/2configs/tools | |
parent | 386d9849e8a4a1aaa16c7055049b2e925916653e (diff) | |
parent | 3c704cf61e2dc48629af6e331c21d9c5be5d277b (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/tools')
-rw-r--r-- | makefu/2configs/tools/all.nix | 1 | ||||
-rw-r--r-- | makefu/2configs/tools/core.nix | 9 | ||||
-rw-r--r-- | makefu/2configs/tools/desktop.nix | 11 |
3 files changed, 12 insertions, 9 deletions
diff --git a/makefu/2configs/tools/all.nix b/makefu/2configs/tools/all.nix index 2bb438f16..b6554e040 100644 --- a/makefu/2configs/tools/all.nix +++ b/makefu/2configs/tools/all.nix @@ -5,6 +5,7 @@ ./core.nix ./core-gui.nix ./dev.nix + ./desktop.nix ./extra-gui.nix ./games.nix ./media.nix diff --git a/makefu/2configs/tools/core.nix b/makefu/2configs/tools/core.nix index 7e9a459c3..604288904 100644 --- a/makefu/2configs/tools/core.nix +++ b/makefu/2configs/tools/core.nix @@ -24,7 +24,6 @@ # io pv - sshpass usbutils p7zip hdparm @@ -39,11 +38,6 @@ wol iftop - mkpasswd - mutt - weechat - tmux - # stockholm git gnumake @@ -55,8 +49,5 @@ rxvt_unicode.terminfo krebspaste - # TODO: - taskwarrior - pass ]; } diff --git a/makefu/2configs/tools/desktop.nix b/makefu/2configs/tools/desktop.nix new file mode 100644 index 000000000..1fe03e111 --- /dev/null +++ b/makefu/2configs/tools/desktop.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: + +{ + users.users.makefu.packages = with pkgs; [ + taskwarrior + pass + mutt + weechat + tmux + ]; +} |