aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-02-04 16:58:13 +0100
committerKatharina Fey <kookie@spacekookie.de>2020-02-04 16:58:13 +0100
commit3300f0d22d7ed1a59ca395c582981e36a5e1ad7b (patch)
tree0a12164f62e091c9e5e52fbc57bb2c13b4c771b1 /modules/workstation
parentc488527c95c874d3b8743c915173ad7bfb05d5af (diff)
ws/writing: adding libreoffice to installed set
Diffstat (limited to 'modules/workstation')
-rw-r--r--modules/workstation/default.nix1
-rw-r--r--modules/workstation/writing/default.nix9
2 files changed, 10 insertions, 0 deletions
diff --git a/modules/workstation/default.nix b/modules/workstation/default.nix
index e330a801484..05d4f9c452f 100644
--- a/modules/workstation/default.nix
+++ b/modules/workstation/default.nix
@@ -34,5 +34,6 @@
./sound
./syncthing
./time
+ ./writing
];
}
diff --git a/modules/workstation/writing/default.nix b/modules/workstation/writing/default.nix
new file mode 100644
index 00000000000..b622fb6c0e1
--- /dev/null
+++ b/modules/workstation/writing/default.nix
@@ -0,0 +1,9 @@
+{ pkgs, ... }:
+
+{
+ home-manager.users.spacekookie = { ... }: {
+ home.packages = with pkgs; [
+ libreoffice
+ ];
+ };
+}