From 63287b1c43e778caa554bd626cab236b05eb32b5 Mon Sep 17 00:00:00 2001 From: Tomas Rivera Date: Sun, 17 May 2026 12:08:50 +0200 Subject: [PATCH] office: separated into new file --- hosts/laptop/configuration.nix | 4 +--- modules/nixos/office.nix | 10 ++++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 modules/nixos/office.nix diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 938598c..2019bee 100755 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -40,13 +40,11 @@ ../../modules/nixos/theme.nix # install theming packages and some quickshell stuff ../../hostsModules/laptop/nixos/hardwareUtils.nix ../../modules/nixos/otherUtils.nix + ../../modules/nixos/office.nix ]; environment.systemPackages = with pkgs; [ - libreoffice - pkgs-unstable.vimPluginsUpdater # used for building plugins vial # Open-source GUI and QMK fork for configuring your keyboard in real time - birdtray # thunderbird tray app ]; # to resolve this https://wiki.nixos.org/wiki/Home_Manager#I_cannot_set_GNOME_or_Gtk_themes_via_Home_Manager diff --git a/modules/nixos/office.nix b/modules/nixos/office.nix new file mode 100644 index 0000000..674f9a2 --- /dev/null +++ b/modules/nixos/office.nix @@ -0,0 +1,10 @@ +{ + pkgs, + ... +}: +{ + environment.systemPackages = with pkgs; [ + libreoffice + birdtray + ]; +}