aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/configuration
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-12-23 13:41:54 +0100
committerMx Kookie <kookie@spacekookie.de>2020-12-23 13:41:54 +0100
commitec73a5b5eaffe3e66c019916427dee4815be92d6 (patch)
tree94fed14cafdf9d06a7cccc099649d3c623fd129a /infra/libkookie/configuration
parent8a4ed2268f46d10565c1d5671c26bc62e64de905 (diff)
libkookie: workstation: add various graphical tools
Diffstat (limited to 'infra/libkookie/configuration')
-rw-r--r--infra/libkookie/configuration/workstation/chat/default.nix12
-rw-r--r--infra/libkookie/configuration/workstation/creative/default.nix18
-rw-r--r--infra/libkookie/configuration/workstation/pass/default.nix10
3 files changed, 40 insertions, 0 deletions
diff --git a/infra/libkookie/configuration/workstation/chat/default.nix b/infra/libkookie/configuration/workstation/chat/default.nix
new file mode 100644
index 000000000000..54b40cea805d
--- /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 000000000000..33ab8f047a64
--- /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 000000000000..c5b195ac92a5
--- /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"
+ '')
+ ];
+}