ma tools: core -> desktop

This commit is contained in:
makefu 2018-06-07 21:18:39 +02:00
parent f6006d7df1
commit 3c704cf61e
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
3 changed files with 12 additions and 9 deletions

View File

@ -5,6 +5,7 @@
./core.nix ./core.nix
./core-gui.nix ./core-gui.nix
./dev.nix ./dev.nix
./desktop.nix
./extra-gui.nix ./extra-gui.nix
./games.nix ./games.nix
./media.nix ./media.nix

View File

@ -24,7 +24,6 @@
# io # io
pv pv
sshpass
usbutils usbutils
p7zip p7zip
hdparm hdparm
@ -39,11 +38,6 @@
wol wol
iftop iftop
mkpasswd
mutt
weechat
tmux
# stockholm # stockholm
git git
gnumake gnumake
@ -55,8 +49,5 @@
rxvt_unicode.terminfo rxvt_unicode.terminfo
krebspaste krebspaste
# TODO:
taskwarrior
pass
]; ];
} }

View File

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
users.users.makefu.packages = with pkgs; [
taskwarrior
pass
mutt
weechat
tmux
];
}