From 634186b95fad3f4b9d258d7b4fc0b82ee3341bdd Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Fri, 27 Jan 2023 12:16:59 +0100 Subject: Install NIX service --- aisaka.org | 3 +++ system-configuration.scm | 3 +++ 2 files changed, 6 insertions(+) diff --git a/aisaka.org b/aisaka.org index 2535439..12810cc 100644 --- a/aisaka.org +++ b/aisaka.org @@ -174,6 +174,7 @@ The Sway Window Manager consists of Sway packages and relevant configurations. #:use-module (gnu services configuration) #:use-module (gnu services desktop) #:use-module (gnu services networking) + #:use-module (gnu services nix) #:use-module (gnu services ssh) #:use-module (gnu services xorg) #:use-module (ssh-server)) @@ -199,6 +200,7 @@ The Sway Window Manager consists of Sway packages and relevant configurations. (packages (append (map (compose list specification->package+output) '("netcat-openbsd" + "nix" "nss-certs" "ntfs-3g" "trezord" @@ -210,6 +212,7 @@ The Sway Window Manager consists of Sway packages and relevant configurations. ,epson-inkjet-printer-escpr)) (web-interface? #t))) (service gnome-desktop-service-type) + (service nix-service-type) (service tor-service-type (tor-configuration (config-file (local-file "torrc")) (control-socket? #t))) diff --git a/system-configuration.scm b/system-configuration.scm index 56dd14c..6bbbbc5 100644 --- a/system-configuration.scm +++ b/system-configuration.scm @@ -8,6 +8,7 @@ #:use-module (gnu services configuration) #:use-module (gnu services desktop) #:use-module (gnu services networking) + #:use-module (gnu services nix) #:use-module (gnu services ssh) #:use-module (gnu services xorg) #:use-module (ssh-server)) @@ -33,6 +34,7 @@ (packages (append (map (compose list specification->package+output) '("netcat-openbsd" + "nix" "nss-certs" "ntfs-3g" "trezord" @@ -44,6 +46,7 @@ ,epson-inkjet-printer-escpr)) (web-interface? #t))) (service gnome-desktop-service-type) + (service nix-service-type) (service tor-service-type (tor-configuration (config-file (local-file "torrc")) (control-socket? #t))) -- cgit v1.2.3