From ec73a5b5eaffe3e66c019916427dee4815be92d6 Mon Sep 17 00:00:00 2001 From: Mx Kookie Date: Wed, 23 Dec 2020 13:41:54 +0100 Subject: [PATCH] libkookie: workstation: add various graphical tools --- .../configuration/workstation/chat/default.nix | 12 ++++++++++++ .../workstation/creative/default.nix | 18 ++++++++++++++++++ .../configuration/workstation/pass/default.nix | 10 ++++++++++ 3 files changed, 40 insertions(+) create mode 100644 infra/libkookie/configuration/workstation/chat/default.nix create mode 100644 infra/libkookie/configuration/workstation/creative/default.nix create mode 100644 infra/libkookie/configuration/workstation/pass/default.nix diff --git a/infra/libkookie/configuration/workstation/chat/default.nix b/infra/libkookie/configuration/workstation/chat/default.nix new file mode 100644 index 00000000000..54b40cea805 --- /dev/null +++ b/infra/libkookie/configuration/workstation/chat/default.nix @@ -0,0 +1,12 @@ +{ config, pkgs, ... }: + +{ + home.packages = with pkgs; + [ + dino + quasselClient + element-desktop + signal-desktop + tdesktop + ]; +} diff --git a/infra/libkookie/configuration/workstation/creative/default.nix b/infra/libkookie/configuration/workstation/creative/default.nix new file mode 100644 index 00000000000..33ab8f047a6 --- /dev/null +++ b/infra/libkookie/configuration/workstation/creative/default.nix @@ -0,0 +1,18 @@ +/** + * A set of tools to do creative production + * + * This may be extended at some point to offer better configuration in + * the future. + */ +{ pkgs, ... }: + +{ + home.packages = with pkgs; + [ + ardour audacity lmms + + kdenlive + + gimp inkscape krita + ]; +} diff --git a/infra/libkookie/configuration/workstation/pass/default.nix b/infra/libkookie/configuration/workstation/pass/default.nix new file mode 100644 index 00000000000..c5b195ac92a --- /dev/null +++ b/infra/libkookie/configuration/workstation/pass/default.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: + +# TODO: make this install the wine program somehow? +{ + home.packages = with pkgs; [ + (writeShellScriptBin "onepass" '' + ${wine}/bin/wine "/home/.wine/drive_c/Program Files/1Password 4/1Password.exe" + '') + ]; +}