diff options
author | EuAndreh <eu@euandre.org> | 2022-10-27 22:50:59 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-27 22:50:59 -0300 |
commit | fe60755c7d599310c3177643037f61fda9851337 (patch) | |
tree | a09ca826122efda22ed08b3254182b174f61aa71 | |
parent | etc/guix/system.scm: Disable nix-service-type (diff) | |
download | dotfiles-fe60755c7d599310c3177643037f61fda9851337.tar.gz dotfiles-fe60755c7d599310c3177643037f61fda9851337.tar.xz |
etc/guix/system.scm: Include driver for EPSON L365 in CUPS service
-rw-r--r-- | etc/guix/system.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/etc/guix/system.scm b/etc/guix/system.scm index 9b733ad..aea343a 100644 --- a/etc/guix/system.scm +++ b/etc/guix/system.scm @@ -22,7 +22,8 @@ (guix utils) (nongnu packages linux) (nongnu system linux-initrd) - (srfi srfi-1)) + (srfi srfi-1) + (xyz euandreh queue)) (heredoc:enable-syntax) (operating-system @@ -74,7 +75,9 @@ (lookup-qemu-platforms "arm" "aarch64")))) (service cups-service-type (cups-configuration - (web-interface? #t))) + (web-interface? #t) + (extensions + (list epson-L365)))) #; (udev-rules-service 'backlight |