unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
* OS Guix. Libreoffice does not have dictionaries for spell check
@ 2020-03-28 19:00 znavko
  2020-03-29  9:14 ` Pierre Neidhardt
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: znavko @ 2020-03-28 19:00 UTC (permalink / raw)
  To: help-guix

[-- Attachment #1: Type: text/plain, Size: 384 bytes --]

Hello, Guix! It might be this question was somewhere, but I did not found on guix-help archive and duckduckgo.
Please, what to do for LibreOffice Writer make a spell check?
It has no any spell check module now and dictionaries are empty. I've just installed it with `guix install libreoffice`
`guix search libreoffice` does not show any language pack.
My system config attached.

[-- Attachment #2: guix-config.scm --]
[-- Type: application/octet-stream, Size: 2646 bytes --]

;-*- mode: Scheme; -*-
;;this is znavko's cute config
;; for lightweight xfce4 desktop

(use-modules (gnu) (gnu system nss)
	     (gnu system locale) ;;for locale-definition
	     (gnu services desktop)
	     (srfi srfi-1)	       ;;for remove function
	     (gnu services networking) ;;for remove ntp
	     (gnu services avahi)      ;;for remove avahi
	     (gnu services xorg)
	     (gnu packages admin) ;;for wpa_supplicant
	     )

(use-service-modules desktop)
(use-package-modules certs gnome)

(operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale "en_US.utf8")
		  (bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (target "/boot/efi")))
		  (file-systems (cons* 
					(file-system (device "/dev/sda1") (mount-point "/boot/efi") (type "vfat"))
					(file-system (device "/dev/sda2") (mount-point "/") (type "ext4")) 
				%base-file-systems))

		  (swap-devices '("/dev/sda3"))

		  (users (cons* (user-account (name "bob") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/bob"))
				(user-account (name "mom") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/mom"))
				%base-user-accounts))

		  ;; This is where we specify system-wide packages.
		  (packages (cons* nss-certs ;for HTTPS access
				   gvfs	     ;for user mounts
				   wpa-supplicant
				   %base-packages))

		  (services (cons* 
			     ;; xfce4 desktop, dhcp-client, slim
			     (service xfce-desktop-service-type)
			     ;(service dhcp-client-service-type)
			     (service slim-service-type)

			     (modify-services      
			      ;; removing unnecessary services
			      (remove (lambda (service)
					(member (service-kind service)
						(list ntp-service-type avahi-service-type 
						      bluetooth-service network-manager-service-type
						      gdm-service-type)))
				      %desktop-services) ;end of remove lambda services

			      ;; wpa_supplicant + dhcp-client (above) instead of networkmanager
			      ;(wpa-supplicant-service-type config =>
			;				   (wpa-supplicant-configuration
			;				    (interface "wlp0s77")
			;				    (config-file "/etc/wpa_supplicant/wpa_supplicant.conf")))

			      )	;;end of modify-services
			     ))	;;end of services

		  ;; Allow resolution of '.local' host names with mDNS.
		  (name-service-switch %mdns-host-lookup-nss)

		  ;;blacklist ugly sound speaker, blacklist ideapad_laptop for prevent soft blocking wlan
		  (kernel-arguments '("modprobe.blacklist=pcspkr,snd_pcsp,bluetooth"))

		  ) ;;end of operating-system

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2020-04-28 12:37 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-28 19:00 OS Guix. Libreoffice does not have dictionaries for spell check znavko
2020-03-29  9:14 ` Pierre Neidhardt
2020-03-29 10:24 ` znavko
2020-03-29 10:44 ` znavko
2020-03-29 10:55   ` Gábor Boskovits
2020-04-28  7:33   ` Pierre Neidhardt
2020-04-28 10:52   ` znavko
2020-04-28 12:35     ` Pierre Neidhardt
2020-03-29 10:56 ` znavko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).