aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-06-04 20:27:49 +0200
committerKatharina Fey <kookie@spacekookie.de>2020-06-04 20:27:49 +0200
commite3ace62eeca6133f89116f2b002feee39d3d7b38 (patch)
tree9eb74814f038920781e4ce53dfe309833849365c /modules/workstation
parent4462b0889cb0290e516506556f2269bafdc5be98 (diff)
workstation/graphics: installing various tools and utilities
Diffstat (limited to 'modules/workstation')
-rw-r--r--modules/workstation/creative/default.nix16
-rw-r--r--modules/workstation/default.nix1
-rw-r--r--modules/workstation/graphics/browser.nix2
-rw-r--r--modules/workstation/graphics/default.nix2
4 files changed, 19 insertions, 2 deletions
diff --git a/modules/workstation/creative/default.nix b/modules/workstation/creative/default.nix
new file mode 100644
index 00000000000..d97c71a2c27
--- /dev/null
+++ b/modules/workstation/creative/default.nix
@@ -0,0 +1,16 @@
+/**
+ * I work on a lot af creative projects, here are
+ * all the tools this requires!
+ */
+{ pkgs, ... }:
+
+{
+ home.packages = with pkgs; [
+ ardour audacity lmms
+
+ kdenlive
+
+ gimp inkscape krita
+
+ libreoffice ];
+}
diff --git a/modules/workstation/default.nix b/modules/workstation/default.nix
index 05d4f9c452f..3cd5f5f5efe 100644
--- a/modules/workstation/default.nix
+++ b/modules/workstation/default.nix
@@ -16,6 +16,7 @@
home-manager.users.spacekookie = { ... }: {
imports = [
./chat
+ ./creative
./devel
./emacs
./pass
diff --git a/modules/workstation/graphics/browser.nix b/modules/workstation/graphics/browser.nix
index 8fc60dd03df..186e2825530 100644
--- a/modules/workstation/graphics/browser.nix
+++ b/modules/workstation/graphics/browser.nix
@@ -1,5 +1,5 @@
{ pkgs, ... }:
{
- home.packages = [ pkgs.firefox ];
+ home.packages = with pkgs; [ firefox evince okular tor-browser-bundle-bin ];
}
diff --git a/modules/workstation/graphics/default.nix b/modules/workstation/graphics/default.nix
index 1995313f1a6..276f38ddc47 100644
--- a/modules/workstation/graphics/default.nix
+++ b/modules/workstation/graphics/default.nix
@@ -44,6 +44,6 @@
services.gnome-keyring.enable = true;
- home.packages = [ pkgs.gnome3.gnome-screenshot ];
+ home.packages = with pkgs; [ gnome3.gnome-screenshot pasystray paprefs ];
};
}