programs: Add libreoffice

This commit is contained in:
2026-03-19 21:35:52 +01:00
parent cb37b19941
commit c3981e6316
2 changed files with 8 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
imports = with inputs.self.modules.nixos; [
weckyy702
upower
libreoffice
];
home-manager.users.weckyy702 = {

View File

@@ -0,0 +1,7 @@
{
flake.modules.nixos.libreoffice = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
libreoffice
];
};
}