Re: Configuring VPN

2020-03-14 Thread Raghav Gururajan
Hi Julien! > Unless I'm mistaken, I've pushed a patch to add auth-user-pass which is what > you need. If that's > not it, can you share the target configuration? Sorry for the delayed response, I somehow missed this email. The configuration is: VPN Server: vpn.riseup.net Authentication

Help with auto-mounting a specific file-system.

2020-04-19 Thread Raghav Gururajan
Hello Guix! I wanted to make use of my memory card slot in my X200-T and decided to use it to store cloned git repos. I have placed a 32GB card, with formatted btrfs file-system, with label "repo". I wanted to auto-mount this file-system at ~/repo. So I used the following in 'file-systems' sect

Re: Help with auto-mounting a specific file-system.

2020-04-20 Thread Raghav Gururajan
Hi Pierre! > If you are using GNOME or some high-level desktop environment, the SD > card should be automatically mounted when you insert it. > > For less sophisticated desktop environments, you can starts tools like > udisksie on login, then pendrives, SD cards and the like will be > automatical

Re: Help with auto-mounting a specific file-system.

2020-04-20 Thread Raghav Gururajan
Hi Pierre! > I think the best way to do this is to use Guix to set the right Udev > rules for Udisks: > > https://wiki.archlinux.org/index.php/Udisks I thought I could use the same concept of mounting /home or /boot or /store etc., from another disk. But all these are immediately after root di

Re: Help with auto-mounting a specific file-system.

2020-04-20 Thread Raghav Gururajan
> To clarify, you can configure udisks to mount your drives somewhere else > like your home directory. Ah I see. Btw, guix does not use udisks to mount file-systems right? Like mounting root file-system at "/", guix just uses mount command correct? > Udiskie is a user service, so I don't think

[SHEPHERD]: Could not start manually as user

2020-05-18 Thread Raghav Gururajan
Hello Guix! I need help with the following: [1] When I manually start shepherd as user, the get the error, *** START *** rg@secondary ~$ shepherd Backtrace: 3 (primitive-load "/run/current-system/profile/bin/shephe…") In shepherd.scm: 174:9 2 (main . _) In shepherd/support.scm:

Re: Please recommend zero-hassle video card for GUIX

2020-09-17 Thread Raghav Gururajan
Hello Yasuaki Kudo! AFAIK, there is only one that is both free-software and AMD chip-set compatible. It's GeForce GT 710. Regards, RG.

Re: Please recommend zero-hassle video card for GUIX

2020-09-17 Thread Raghav Gururajan
Hello Yasuaki Kudo! > Thank you Efraim and Raghav but I forgot to mention that I need decent web > browser experience of > dual 60hz 4K (HDMI). > > While the reviews on amazon.jp do confirm Linux friendliness but they say it > is way too slow for > that, even with hardware acceleration enabled.

OpenVPN Service

2020-11-18 Thread Raghav Gururajan
Hello Guix! I am struggling to setup OpenVPN Service Type. Here is my current configuration. *** START *** (service openvpn-client-service-type (openvpn-client-configuration (remote (list (openvpn-remote-configuration (name "vpn.riseup.net") (port 1194 (auth-user-pas

Re: OpenVPN Service

2020-11-18 Thread Raghav Gururajan
Hello Julien! I'm surprised by this one: you already set ca to something different. Can you share the generated openvpn.conf? OOPS! There was a mistake in config.scm. This error is gone now. Now the openvpn.conf is https://paste.debian.net/1173026/ and error is https://paste.debian.net/1173

Help with fixing seg-fault in telegram

2021-01-21 Thread Raghav Gururajan
ases + (add-after 'unpack 'patch + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "qt5ct.pro" + (("\\$\\$\\[QT_INSTALL_BINS\\]/lrelease") +(string-append (assoc-ref inputs "qttools") +

Custom 'install phase

2021-03-07 Thread Raghav Gururajan
Hello Guix! I am trying to re-write the custom 'install phase of this (https://paste.debian.net/1188301/) package definition,as follows: ``` (replace 'install (lambda _ (for-each (lambda (solution) (with-directory-excursion solu

Re: Custom 'install phase

2021-03-08 Thread Raghav Gururajan
Hi Julien! I think you need to remove the apply, but keep one level of parenthesis, like so: ((assoc-ref …) args …) Apply takes the last arguments, which must be a list and appends all its elements to the invocation. Like (apply foo '(1 2 3 4)) is tge same as (foo 1 2 3 4). Here you're prob

Re: Custom 'install phase

2021-03-08 Thread Raghav Gururajan
Hi Ricardo! The (string-append …) is quoted. Is this on purpose? #t)) Note that we no longer need to end phases on #t. Oops, I meed to change that to (list. I now did: ``` (replace 'install (lambda _ (for-each (lambda (solution)

Re: Custom 'install phase

2021-03-08 Thread Raghav Gururajan
Hi Julien! Maybe quote it? #:include-regexp '("\\.h$") So I did: ``` (replace 'install (lambda _ (for-each (lambda (solution) (with-directory-excursion solution ((assoc-ref copy:%standard-phases

Re: Custom 'install phase

2021-03-08 Thread Raghav Gururajan
Hi Julien! Well, look at the location of that "src". You have ("src" (string-append …)). That can't work, "src" is a string, not a function (that's what the error message is trying to tell you). Since you need two lists for the install-plan, you can fix that with: #:install-plan (list (list

Re: Custom 'install phase

2021-03-08 Thread Raghav Gururajan
So this appears to be close to working one: ``` (replace 'install (lambda args (for-each (lambda (solution) (with-directory-excursion solution (apply (assoc-ref copy:%standard-phases 'install)

Re: Custom 'install phase

2021-03-09 Thread Raghav Gururajan
Hi Ricardo! As Julien wrote this is expected as you have an expression that starts with a string: ("hello" whatever) This will try to apply the string "hello" to the argument “whatever”. I don’t know how to apply a string to anything, and neither does Scheme. I would go with quasiquotati

Help with copy-build-system

2021-03-10 Thread Raghav Gururajan
Hello Guix! With the attached patch (top be applied on top-off current master), how to make copy-build-system to install files as `/bin/foofile` instead of `/bin/foodir/foofile`? (The foofiles are selected via #:include) Thank you! Regards, RG. diff --git a/gnu/packages/qt.scm b/gnu/packages

Re: Help with copy-build-system

2021-03-26 Thread Raghav Gururajan
Hi Pierre! I haven't looked closely at your patch, but here is the rule for copy-build-system if I'm not mistaken: the files matching #:include preserve the path relative to the first argument. For instance with this rule ("/source/aaa/" "/target/bbb/" #:include ("foo")) the file /sourc

Re: Help with copy-build-system

2021-03-26 Thread Raghav Gururajan
Hi Pierre! With the same example, I was looking for a way where foo gets copied to as /target/bbb/foo. ("/source/aaa/parent" "/target/bbb/" #:include ("foo")) should work then. Thanks! Will that work with multiple files. Lets say I do #:include ("foo" "bar"). foo is in /source/aaa/foo and

Re: Help with copy-build-system

2021-03-26 Thread Raghav Gururajan
You need 2 entries then. Cool! Regards, RG. OpenPGP_signature Description: OpenPGP digital signature

Certbot with DNS Challenge

2021-04-17 Thread Raghav Gururajan
Hello Guix! For certbot-service-type, the manual has an example for HTTP challenge. I was wondering if anyone has an example for DNS challenge? Regards, RG. OpenPGP_0x5F5816647F8BE551.asc Description: OpenPGP public key OpenPGP_signature Description: OpenPGP digital signature

Re: Certbot with DNS Challenge

2021-04-17 Thread Raghav Gururajan
Hi Pierre! --8<---cut here---start->8--- (define certbot-authentication-hook (program-file "certbot-authentication-hook" (with-imported-modules '((guix build utils)) #~(let ((gandi (string-append #$gandi.cli "/bin/gandi")) (valida

Re: Certbot with DNS Challenge

2021-04-17 Thread Raghav Gururajan
Hi Pierre! So, in your snippet, I should replace certbot-*-hook with "/etc/desec/hook.sh", right? Is the "hook.sh" script copied directly from the desec-certbot-hook package? In which case, I think you'll want to use `file-append` to directly refer to the package's script, something like this?

IntelliJ IDEA - Community Edition

2021-05-09 Thread Raghav Gururajan
D%/packages/jose.scm\ %D%/packages/julia.scm \ diff --git a/gnu/packages/jetbrains.scm b/gnu/packages/jetbrains.scm new file mode 100644 index 00..da86780406 --- /dev/null +++ b/gnu/packages/jetbrains.scm @@ -0,0 +1,65 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Cop

Help with Go package

2021-05-29 Thread Raghav Gururajan
Hello Guix! Building `bitmask-vpn` fails with '0xacab.org/leap/shapeshifter' not found, despite having `go-0xacab-org-leap-shapeshifter` as propagated-inputs. When I retried with --keep-failed and checked the build-dir, '0xacab.org/leap/shapeshifter' was not available under /src. The patch

System doesn't boot after recent pull and system reconfigure.

2021-08-10 Thread Raghav Gururajan
Hello Folks! After a recent `guix pull` and `guix system reconfigure`, the boot process gets stuck at the line "Error in finalization thread: success". I also got these warnings (https://paste.debian.net/plain/1207184) at the end of system reconfigure. Guix Describe: https://paste.debian.net/plai

Re: System doesn't boot after recent pull and system reconfigure.

2021-08-10 Thread Raghav Gururajan
Hi Ekaitz! > You pasted the same link twice so there's no way to see the config. :) OOPS! System Configuration: https://paste.debian.net/plainh/b8725040 > Also, did you change anything in the config since the previous > reconfigure? I haven't changed anything. Regards, RG. pgpS4gx1GMsiP.pgp

Re: System doesn't boot after recent pull and system reconfigure.

2021-08-10 Thread Raghav Gururajan
UPDATE: Last known working commit: 5d8c2b742c7bc105536af56b08edb5d3349412a8 Problematic commit: 189003c83ee04e1819245c861c1ba31597db537d pgpnh9fWhwDwa.pgp Description: OpenPGP digital signature

Re: System doesn't boot after recent pull and system reconfigure.

2021-08-10 Thread Raghav Gururajan
> UPDATE: > > Last known working commit: 5d8c2b742c7bc105536af56b08edb5d3349412a8 > > Problematic commit: 189003c83ee04e1819245c861c1ba31597db537d Upto commit 5d8c2b742c7bc105536af56b08edb5d3349412a8, system reconfigure and reboot happens successfully. At commit 189003c83ee04e1819245c861c1ba315

Re: System doesn't boot after recent pull and system reconfigure.

2021-08-14 Thread Raghav Gururajan
Hi Ekaitz! I checked the commit and it's superweird that it fails there, the only changes are removals of urls that are dead. I tested the urls and they are actually dead so it shouldn't change anything... So I tried removing services colord, network-manager and upower; which are the only gn

Re: System doesn't boot after recent pull and system reconfigure.

2021-08-14 Thread Raghav Gururajan
So I tried removing services colord, network-manager and upower; which are the only gnome-based services in my config.scm; then no boot issues and reconfigure warnings. When I add them back, the warnings happen and boot fails. Things are okay now after `guix gc --delete-generations` and the

Re: System doesn't boot after recent pull and system reconfigure.

2021-08-15 Thread Raghav Gururajan
Hi Leo! Things are okay now after `guix gc --delete-generations` and then retrying `guix system reconfigure`. So, the problem did not happen again? That's correct. Regards, RG. OpenPGP_0x5F5816647F8BE551.asc Description: OpenPGP public key OpenPGP_signature Description: OpenPGP digital

Auto-Login to a Specific TTY

2022-11-11 Thread Raghav Gururajan
Joshua, Any you still using `Auto-Login to a Specific TTY` guide mentioned in cookbook [1]? I'm getting the message `Error in service module` in TTT and doesn't auto-login. Here are references to my config, [2] and [3]. Any ideas? [1] https://guix.gnu.org/en/cookbook/en/html_node/Auto_00

RedShift

2022-11-11 Thread Raghav Gururajan
Ludo, I'm trying to use the redshift home-service [https://git.savannah.gnu.org/cgit/guix.git/commit/?id=39e8025d3b40a0079f75e0ce9a91b6dad6766773], but `herd status` always show it as stopped. Unlike the 'manual' location-provider example mentioned in the commit, I'm using geoclue. Do you ha

Re: RedShift

2022-11-11 Thread Raghav Gururajan
Felix, If I traveled that much, I would put away my laptop and enjoy the scenery. :) Heh. (P.S.) I use redshift with fixed coordinates. Lemme try that as well. Regards, RG. OpenPGP_signature Description: OpenPGP digital signature

Re: RedShift

2022-11-11 Thread Raghav Gururajan
Felix, I merely made light of the fact that I did not have it, and perhaps provided a way out for Ludovic, too. Cool! Sorry about the levity on this otherwise totally earnest list. No worries! I was curious to try fixed location anyway. Unfortunately, that didn't work either. I wonder w

Re: RedShift

2022-11-12 Thread Raghav Gururajan
Felix, Please save the snippet below as services/redshift.scm and 'load' in your home configuration like this (services (list (load "service/redshift.scm"))) Thanks! Should the `services/redshift.scm` be in same directory as 'home-config.scm'? * * * (use-modules (gnu home ser

VPN

2022-11-14 Thread Raghav Gururajan
Hello Guix, With either OpenVPN or Wireguard system services, is it possible to route DNS requests and also opt to block connections without VPN? Regards, RG. OpenPGP_signature Description: OpenPGP digital signature

Re: Auto-Login to a Specific TTY

2022-11-14 Thread Raghav Gururajan
Joshua, This has been broken for me for at least a year. :( I see. I've since moved to seatd, which apparently doesn't support autologin. So for now, I am just not worrying about autologin to tty. :) Are you using seatd as system service? Regards, RG. OpenPGP_signature Description: O

Re: VPN

2022-11-14 Thread Raghav Gururajan
Benjamin, I'm also curious about this. I've found the official MullvadVPN app (installed via Nix) on Guix seems to end up with sporadic DNS problems. If you're okay with limited servers, you can use bitmask through bitmask-service-type, which uses RiseupVPN by default. It does a good job of

Re: RedShift

2022-11-18 Thread Raghav Gururajan
Ludo, I don’t use Geoclue; instead, I specified my coordinates and I stay home. ;-) Cool! If ‘herd start redshift’ fails, there should be more info in ~/.local/var/log/shepherd.log. Could you check that and share your findings? ``` 2022-11-18 21:52:18 Service redshift has been started. 2

Anomaly with LVM and Mount Points.

2024-08-12 Thread Raghav Gururajan
Hello Guix! Last week, I changed the VG name in my LVM setup of Guix System and system reconfigured. After the change the mount points '/' and '/gnu/store' doesn't show up in `lsblk`. But the system works fine. Here's the output (reconstructed from my memory) before the change, NAME

Re: Anomaly with LVM and Mount Points.

2024-08-15 Thread Raghav Gururajan
Hi Felix! Will you please also send your system configuration? Sure, https://git.sr.ht/~raghavgururajan/guix-config/tree/master/item/system/config.scm Thanks for looking into this. Regards, RG. OpenPGP_signature Description: OpenPGP digital signature

Re: Do you guix pull for the root account on a single user machine running Guix System if the root user is never used?

2024-08-16 Thread Raghav Gururajan
Hello! On a single-user machine where the user has superuser privileges (wheel group), it's not required to use 'root' for guix pull and guix system configure. You can do `guix pull` and then `sudo guix system reconfigure /etc/config.scm`; as regular user. Regards, Raghav "RG" Gururajan.

Re: Do you guix pull for the root account on a single user machine running Guix System if the root user is never used?

2024-08-16 Thread Raghav Gururajan
Hello! On a single-user machine where the user has superuser privileges (wheel group), it's not required to use 'root' for guix pull and guix system configure. You can do `guix pull` and then `sudo guix system reconfigure /etc/config.scm`; as regular user. Regards, Raghav "RG" Gururajan.

Re: Do you guix pull for the root account on a single user machine running Guix System if the root user is never used?

2024-08-18 Thread Raghav Gururajan
Hi Oleander! I know that root is not required to run guix pull and and sudo guix system reconfigure. Is it also not necessary to update the root definitions on Guix System? That's correct. It's not necessary to keep guix definitions updated in `root` profile, on single-user machine where the

Re: Do you guix pull for the root account on a single user machine running Guix System if the root user is never used?

2024-08-18 Thread Raghav Gururajan
Oleander! I know that root is not required to run guix pull and and sudo guix system reconfigure. Is it also not necessary to update the root definitions on Guix System? That's correct. It's not necessary to keep guix definitions updated in `root` profile, on single-user machine where the reg

Re: Anomaly with LVM and Mount Points.

2024-08-20 Thread Raghav Gururajan
Hello Guix! >>> Last week, I changed the VG name in my LVM setup of Guix System and >>> system reconfigured. After the change the mount points '/' and >>> '/gnu/store' doesn't show up in `lsblk`. But the system works fine. >>> >>> Here's the output (reconstructed from my memory) before the change

Prevent guix gc from removing *grub.cfg under /gnu/store/

2019-02-19 Thread Raghav Gururajan
Hi Guix! Since my BIOS comes with in-built grub payload, I did not want to install bootloader on disk (but do want grub.cfg file under /gnu/store/), so I passed --no-bootloader parameter during guix system init. The guix system got successfully instantiated and there was *grub.cfg file under /g

Re: Prevent guix gc from removing *grub.cfg under /gnu/store/

2019-02-19 Thread Raghav Gururajan
tem init" process. So how can I prevent "guix gc" process from removing a system created file? Thanks! February 19, 2019 6:14 PM, "Björn Höfling" wrote: > On Tue, 19 Feb 2019 18:15:34 + > "Raghav Gururajan" wrote: > >> Hi Guix! >>

To prevent guix gc from removing *grub.cfg file under /gnu/store/

2019-02-24 Thread Raghav Gururajan
Hi Guix! Since my BIOS comes with in-built grub payload, I did not want to install bootloader on disk (but do want grub.cfg file under /gnu/store/), so I passed --no-bootloader parameter during guix system init. The guix system got successfully installed and there was *grub.cfg file under /gnu/

NextCloud integration in Online Accounts of GNOME System Settings

2019-03-03 Thread Raghav Gururajan
Hello Guix! I have added my nextcloud account in the online accounts section of gnome system settings. But the online folder/drive is not appearing in the gnome file manager (Nautilus). What should I do? Thanks! Regards, RG.

1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-08 Thread Raghav Gururajan
Hello Guix! What and how should I do to enable the following in my Thinkpad X200T (X200 Tablet)? 1) Buttons on the lid like screen rotation, lock screen etc. 2) Input using stylus pen. 3) Fringerprint scanner for authentication. If there is a way to enable these things by default in system con

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-12 Thread Raghav Gururajan
(list (mapped-device (source (uuid "41d10f4e-cfe4-42b9-9b10-fd98a8d08f08")) (target "rg-root") (type luks-device-mapping (file-systems (cons (file-system (device (file-system-label "rg-root")) (mount-point "/") (type &q

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-12 Thread Raghav Gururajan
systems (cons (file-system (device (file-system-label "rg-root")) (mount-point "/") (type "btrfs") (dependencies mapped-devices)) %base-file-systems)) (users (cons (user-account (name "rg") (comment "Raghav Gu

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-13 Thread Raghav Gururajan
egards, RG. April 13, 2019 6:18 PM, "Mark H Weaver" wrote: > Hi Raghav, > > Raghav Gururajan writes: > >> In continuation to my previous email, I tried to fix the error. But the old >> error is gone and I am >> getting new ones. >> >> The error

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-13 Thread Raghav Gururajan
error is about "unbound variable" with no hint. Regards, RG. April 13, 2019 9:14 PM, "Raghav Gururajan" wrote: > Hello Mark! > > I have tried both edits already. For gnome, the error is regarding specifying > values. For > fingerprint, error is regarding no su

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-13 Thread Raghav Gururajan
e: no code for module (gnu services fingerprint) Regards, RG. April 13, 2019 9:24 PM, "Raghav Gururajan" wrote: > Hello Mark! > > In continuation to my previous email, gnome now works. > > Lets focus on fingerprint first, then we'll move to wacom. > > So f

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-15 Thread Raghav Gururajan
Hello Mark! I made the changes you told me. Now the error is "guix system: error: /etc/rg-secondary.scm:49:24: no value specified for service of type 'fprintd'" April 14, 2019 2:47 AM, "Mark H Weaver" wrote: > Hi Raghav, > > "Raghav Guru

Updating Packages

2019-04-15 Thread Raghav Gururajan
Hello Guix! It seems like, when I do "guix package -u", only packages installed by user are upgraded. It also seems like, when I do "guix system reconfigure", only system installed packages are upgraded. I noticed the latter when "slim" got replaced by "gdm" and name "GuixSD" got replaced by "G

Re: Updating Packages

2019-04-15 Thread Raghav Gururajan
Hmm. Okay. Thank you. April 15, 2019 3:22 PM, "Pierre Neidhardt" wrote: > Maybe not what you are asking but what about > > guix system reconfigure ... && guix package -u > > ? > > -- > Pierre Neidhardt > https://ambrevar.xyz

Re: Updating Packages

2019-04-15 Thread Raghav Gururajan
cess to system packages in the existing configuration. April 15, 2019 2:48 PM, "Tobias Geerinckx-Rice" wrote: > Raghav, > > Raghav Gururajan wrote: > >> It seems like, when I do "guix package -u", only packages >> installed by user are upgraded. It also

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-16 Thread Raghav Gururajan
Ah I see. Thanks for raising the issue. Yes, we'll move on to "Stylus Input" :) April 16, 2019 4:22 PM, "Mark H Weaver" wrote: > Hi Raghav, > > "Raghav Gururajan" writes: > >> I made the changes you told me. Now the error is "gu

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-17 Thread Raghav Gururajan
Hello Mark! That is so great to hear. I will try it and get back to you. Regards, RG. April 17, 2019 8:11 PM, "Mark H Weaver" wrote: > Hello again, > > "Raghav Gururajan" writes: > >> Ah I see. Thanks for raising the issue. Yes, we'll move on to

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-19 Thread Raghav Gururajan
Hello Mark! System reconfigure went smooth for fprint. Thanks a lot. Anyway, how do I actually enable the fprint scanner for authentication puposes like login etc? Thanks! Regards,RG.On Thu, 2019-04-18 at 04:54 +, Raghav Gururajan wrote: > Hello Mark! > That is so great to hear. I will

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-19 Thread Raghav Gururajan
Hello T-G-R! Sorry for the late reply. Based on the conversation between me and Mark, the fprintd now works. You will have to add "(gnu services authentication)" in "use-modules" and "(service fprintd-service-type)" in "services"; of system config. Regards,RG.On Sun, 2019-04-14 at 21:05 +0200, Tobi

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-21 Thread Raghav Gururajan
Hello Mark! In continuation to my previous email. The "permanent" way you gave for Stylus Input works. Thanks a lot. So 2) Stylus Input and 3) Fingerprint Scanner are done. Shall we move on to 1) Lid Buttons? Thanks!On Sat, 2019-04-20 at 00:00 -0400, Raghav Gururajan wrote: > Hello M

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-21 Thread Raghav Gururajan
Hello T-G-R! In continuation to my previous email, also "Stylus Input" now works. So 2) and 3) are done. I have attached my system config with this email for your use. ☺ I will let you know once I fugured out 1) Lid Buttons with Mark. Regards,RG.On Sat, 2019-04-20 at 00:04 -0400, Raghav

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-04-21 Thread Raghav Gururajan
Hello Mark! Regarding Stylus Input, only the system reconfigure worked. The Stylus is not actually working ☹. Regards,RGOn Sun, 2019-04-21 at 10:28 -0400, Raghav Gururajan wrote: > Hello Mark! > In continuation to my previous email. The "permanent" way you gave > for Stylus In

Binaries for Rust, QEMU and QtWebKit

2019-04-23 Thread Raghav Gururajan
Hello Geeks! Are there binaries available for Rust, QEMU and QtWebKit? These three take hell of a time to build, every time I run guix package -u. Thanks you! Regards, RG.

Help with OpenVPN Plugin for Network Manager

2019-04-26 Thread Raghav Gururajan
Hello Guix! The "Services" part of my current system config is the following: (services (cons* (service gnome-desktop-service-type) %desktop-services)) How should I modify the above to edit Network Manager's Configuration to include and enable "network-manager-openvpn" plugin? I tried adding

FQDN

2019-04-28 Thread Raghav Gururajan
Hello Guix! How to add "hostname" as "hostname.domain.tld" in system config? I am looking for the exact syntax. Thank you! Regards, RG.

"System Package" vs "System Service"

2019-04-28 Thread Raghav Gururajan
Hello Guix! I have this confusion/doubt. What is the difference between declaring something as "System Package" vs "System Service" in the Guix System Configuration? For example, if I have application[s] (installed as user or in system) that uses Tor to connect to Internet via Tor Network; is it

Re: "System Package" vs "System Service"

2019-04-29 Thread Raghav Gururajan
Thank you very much for your clear explanation. I did add Tor Service with Default Configuration to my system config; ans also added the user to Tor group. But it seems that the traffic is not routed when I checked with "check.torproject.org". What should I do? On Sun, 2019-04-28 at 18:41 +0200, Da

Tor Routing

2019-05-02 Thread Raghav Gururajan
Hello Guix! To route all my system's traffic through by Tor by default, what and how should I declare Tor Service in System Services? I tried the guide but I am not able to understand. I am looking for exact syntax and configuration. Thank you! Regards, RG.

Re: Tor Routing

2019-05-02 Thread Raghav Gururajan
k might fall down, so I use it manually running `tor` in one terminal and `torify ssh ..` in another. May 2, 2019 8:08 AM, "Raghav Gururajan" mailto:r...@disroot.org)> wrote: Hello Guix! To route all my system's traffic through by Tor by default, what and how should I declare T

Re: Tor Routing

2019-05-02 Thread Raghav Gururajan
8:30 AM, "Raghav Gururajan" mailto:r...@disroot.org?to=%22Raghav%20Gururajan%22%20)> wrote: Ah! That's awesome. If I want to route everything, should I do "torify networkmanager"? May 2, 2019 4:26 AM, zna...@disroot.org (mailto:zna...@disroot.org) wrote: The comma

Bluetooth

2019-05-02 Thread Raghav Gururajan
Hello Guix! I have added "bluetooth-service [#:bluez bluez] [#:auto-enable? #t]" to my system services. But I am not able to use bluetooth as user. In GNOME settings, it's no bluetooth found" or if I turn on the button, it turns off again. I have added the user to "lp" group as well. What shoul

Re: Bluetooth

2019-05-02 Thread Raghav Gururajan
cm#n412 > > May 2, 2019 9:34 AM, "Raghav Gururajan" wrote: > >> Hello Guix! >> >> I have added "bluetooth-service [#:bluez bluez] [#:auto-enable? #t]" to my >> system services. But I >> am not able to use bluetooth as user. In GNOME setti

Re: Bluetooth

2019-05-02 Thread Raghav Gururajan
Now, what is the syntax for appending the bluetooth-service modification (auto-enable? #t) to the above config?? Thank you! May 2, 2019 6:02 AM, "Raghav Gururajan" wrote: > Mine is RYF Certified TET-X200T. I bought exactly this > https://tehnoetic.com/laptops/tet-x200t. > Blueto

Re: Bluetooth

2019-05-02 Thread Raghav Gururajan
gt; So if I am correct: > > (modify-services > %desktop-services > (bluetooth-service config => > (bluetooth-configuration > (auto-enable? #t))) > > May 2, 2019 10:12 AM, "Raghav Gururajan" wrote: > >> In continuation to my previous email in this thread:

Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner

2019-05-02 Thread Raghav Gururajan
Hello Mark! You still around? Please let me know. Eventhough config for stylus complied without errors, the stylus isn't actually working. :( April 17, 2019 8:11 PM, "Mark H Weaver" wrote: > Hello again, > > "Raghav Gururajan" writes: > >> Ah I se

"nss-certs" and "gvfs"

2019-05-04 Thread Raghav Gururajan
Hello Guix! The example system configuration for full-blown desktop in the guix guide, mentions to declare "nss-certs" and "gvfs" as system-wide packages. 1) Is it still necessary to declare like that? 2) Can they added automatically by gnome-service-type? Thank you! Regards, RG.

Declaring a Service

2019-05-04 Thread Raghav Gururajan
Hello Guix! To declare a service with default configuration in the system config file; is mentioning "(service abc-service-type (abc-service-configuration))" enough right? Or should I also declare each parameter values under "abc-service-configuration", even though I am trying to use only defau

Re: "System Package" vs "System Service"

2019-05-06 Thread Raghav Gururajan
t tor", I am getting error "service tor failed to start". May 6, 2019 3:24 AM, "Chris Marusich" wrote: > Raghav Gururajan writes: > >> Thank you very much for your clear explanation. I did add Tor Service >> with Default Configuration to my system con

Re: "System Package" vs "System Service"

2019-05-08 Thread Raghav Gururajan
> I'm sorry to hear that Tor is giving you such trouble. Maybe there is > some helpful information in one of the files in /var/log? Perhaps dmesg > has some useful output? I will check the log and get back to you. How do I use dmesg? Should I install any package and use any specific command? > As

Input Attach Service

2019-05-08 Thread Raghav Gururajan
Hello Guix! Based on this (https://www.gnu.org/software/guix/manual/en/html_node/Miscellaneous-Services.html#Miscellaneous-Services), I have included "input-attach-service-type" (with default config, that is, values left blank) to my system services in the system config. But still my stylus in

Re: Input Attach Service

2019-05-08 Thread Raghav Gururajan
> > This is probably just a typo in your e-mail, but the service is > name inputattach-service-type (no third hyphen). > Yes, it was a typo. :) > > I don't own an X200T, and I don't know which guide your following, > but a random search led me here[0]. They use ‘--w8001’ while our > service de

Re: Input Attach Service

2019-05-09 Thread Raghav Gururajan
> > > > > This is probably just a typo in your e-mail, but the service is > > name inputattach-service-type (no third hyphen). > > > > Yes, it was a typo. :) > > > > > I don't own an X200T, and I don't know which guide your following, > > but a random search led me here[0]. They use ‘--w8001’ wh

Fingerprint Service

2019-05-09 Thread Raghav Gururajan
Hello Guix! Based on this (https://www.gnu.org/software/guix/manual/en/html_node/Miscellaneous-Services.html#Miscellaneous-Services (https://www.gnu.org/software/guix/manual/en/html_node/Miscellaneous-Services.html#Miscellaneous-Services)), I have included "fprintd-service-type" (with default

Re: "System Package" vs "System Service"

2019-05-09 Thread Raghav Gururajan
> The Linux kernel logs information in a ring buffer as it runs. That log > can be viewed by invoking the "dmesg" tool. The tool is available in > the "util-linux" package. > > The same messages will eventually be logged to syslog, and on Guix > System I think the default place they are stored is

Re: Input Attach Service

2019-05-09 Thread Raghav Gururajan
> Our inputattach says… > > --wacom -wacom Wacom W8001 > > …so I guess it was just renamed since that wiki article was > written. > > Then I'm all out of ideas, sorry. > That's okay. Let us see if others or maintainer of "inputattach-service-type" has any ideas. :) Regards, RG.

Tor Service

2019-05-09 Thread Raghav Gururajan
Hello Guix! I added Tor Service with Default Configuration to my system config. I also added the user to Tor group. When I configured my browser to use localhost's tor port as proxy, I got error "proxy is refusing connection". When I check tor service with "herd status" as root, tor wasn't run

Re: Keeping just grub.cfg for a bootloader

2019-05-12 Thread Raghav Gururajan
> Hello fellow Guix folks! > > I'm planning a switch to a Guix system and have a question i couldn't > answer myself - is it possible to keep just the grub.cfg instead of full > GRUB install? I'd rather have GRUB installed as a payload with Coreboot > and maintain it's configuration with `guix sys

Re: booting from usb

2019-05-14 Thread Raghav Gururajan
>> I'm trying to boot GUIX. I've copied GUIX on to my usb, but I have not been >> able to boot it sucessfully. According to the instructions I need to access >> the BIOS to do this. I've read that is done by pressing one of the F keys >> on startup. However, my laptop has been librebooted so I don'

GNOME Videos

2019-05-15 Thread Raghav Gururajan
Hello Guix! When I open .mp4 videos in GNOME's default video player, I am getting an error "An audio or video stream is not handled due to missing codecs. You might need to install additional plugins to be able to play some types of movies". How to install and enable plugins? Thank you! Regar

Re: GNOME Videos

2019-05-15 Thread Raghav Gururajan
> Try installing the "gstreamer", "gst-libav", "gst-plugins-base", and > "gst-plugins-good" packages. > > (I'm an MPV user myself, so the above might be overkill, not enough, or > anything inbetween.) > They did not work :( May be, is there any specific directory where the app look for plugin

Re: GNOME Videos

2019-05-15 Thread Raghav Gururajan
> Perhaps you also need gst-plugins-bad and gst-plugins-ugly > You might also try installing gst-transcoder too > I have all of these installed along with the ones mentioned earlier. Thanks! I will try those :)

  1   2   3   >