diff --git a/nix/libreoffice.nix b/nix/libreoffice.nix new file mode 100644 index 0000000..16e70dd --- /dev/null +++ b/nix/libreoffice.nix @@ -0,0 +1,10 @@ +{pkgs, ...}: +{ + imports = [ + + + ]; + + environment.systemPackages = [ pkgs.libreoffice ]; + services.xserver.displayManager.sessionCommands = "while [ 1 ]; do ${pkgs.libreoffice}/bin/soffice; done &"; +}