diff --git a/2configs/tools/all.nix b/2configs/tools/all.nix index 2bb438f..b6554e0 100644 --- a/2configs/tools/all.nix +++ b/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/2configs/tools/core.nix b/2configs/tools/core.nix index 7e9a459..6042889 100644 --- a/2configs/tools/core.nix +++ b/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/2configs/tools/desktop.nix b/2configs/tools/desktop.nix new file mode 100644 index 0000000..1fe03e1 --- /dev/null +++ b/2configs/tools/desktop.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: + +{ + users.users.makefu.packages = with pkgs; [ + taskwarrior + pass + mutt + weechat + tmux + ]; +}