diff options
-rw-r--r-- | site/posts/2018-07-17-running-guix-on-nixos.org | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/site/posts/2018-07-17-running-guix-on-nixos.org b/site/posts/2018-07-17-running-guix-on-nixos.org index 3f4f791..d23f303 100644 --- a/site/posts/2018-07-17-running-guix-on-nixos.org +++ b/site/posts/2018-07-17-running-guix-on-nixos.org @@ -81,7 +81,7 @@ One other thing missing was the =systemd= service. First I couldn't just copy the =.service= file to =/etc= since in NixOS that folder isn't writable. But also I wanted the service to be better integrated with the OS. -That was a little easier than creating the users, all I had to do was translate the provided =guix-daemon.service= configuration to an equivalent Nix expression +That was a little easier than creating the users, all I had to do was translate the provided [[https://git.savannah.gnu.org/cgit/guix.git/tree/etc/guix-daemon.service.in?id=00c86a888488b16ce30634d3a3a9d871ed6734a2][=guix-daemon.service.in=]] configuration to an equivalent Nix expression #+BEGIN_SRC ini -n # This is a "service unit file" for the systemd init system to launch # 'guix-daemon'. Drop it in /etc/systemd/system or similar to have @@ -107,8 +107,6 @@ WantedBy=multi-user.target #+END_SRC This sample =systemd= configuration file became: #+BEGIN_SRC nix -n -# Derived from Guix guix-daemon.service.in -# https://git.savannah.gnu.org/cgit/guix.git/tree/etc/guix-daemon.service.in?id=00c86a888488b16ce30634d3a3a9d871ed6734a2 guix-daemon = { enable = true; description = "Build daemon for GNU Guix"; |