office: separated into new file

This commit is contained in:
2026-05-17 12:08:50 +02:00
parent 1396e3df75
commit 63287b1c43
2 changed files with 11 additions and 3 deletions
+1 -3
View File
@@ -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
+10
View File
@@ -0,0 +1,10 @@
{
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
libreoffice
birdtray
];
}