From f1bb44b5cc42c3060fdd9a40457d5c72769d4575 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Thu, 29 Oct 2020 08:35:29 +0100 Subject: [PATCH] Add office role --- roles/subroles/office.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 roles/subroles/office.nix diff --git a/roles/subroles/office.nix b/roles/subroles/office.nix new file mode 100644 index 0000000..2bd7bf6 --- /dev/null +++ b/roles/subroles/office.nix @@ -0,0 +1,6 @@ +{ config, pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + libreoffice + ]; +}