summaryrefslogtreecommitdiff
path: root/aisaka.org
diff options
context:
space:
mode:
Diffstat (limited to 'aisaka.org')
-rw-r--r--aisaka.org49
1 files changed, 29 insertions, 20 deletions
diff --git a/aisaka.org b/aisaka.org
index 838884a..806e1a0 100644
--- a/aisaka.org
+++ b/aisaka.org
@@ -5,11 +5,11 @@
* TODO Guix
-https://guix.gnu.org/en/manual/devel/en/html_node/
+https://guix.gnu.org/en/manual/en/html_node/
** TODO System configuration
-https://guix.gnu.org/en/manual/devel/en/html_node/System-Configuration.html
+https://guix.gnu.org/en/manual/en/html_node/System-Configuration.html
#+begin_src scheme :noweb-ref system-dump :tangle system-configuration.scm
(add-to-load-path "./services")
@@ -52,24 +52,7 @@ https://guix.gnu.org/en/manual/devel/en/html_node/System-Configuration.html
"nss-certs"
"ntfs-3g"))
%base-packages))
- (services (cons*
- <<ssh-system-service>>
- <<trezor-system-packages>>
- (service cups-service-type
- (cups-configuration (extensions `(,cups-filters
- ,epson-inkjet-printer-escpr))
- (web-interface? #t)))
- (service git-daemon-service-type)
- (service gnome-desktop-service-type)
- (service tor-service-type (tor-configuration
- (control-socket? #t)))
- <<trezor-udev-rules>>
- (modify-services %desktop-services
- (elogind-service-type
- configuration =>
- (elogind-configuration
- (inherit configuration)
- (handle-lid-switch 'ignore))))))
+ <<system-services>>
(bootloader (bootloader-configuration (bootloader grub-bootloader)
(targets '("/dev/sda"))
(keyboard-layout keyboard-layout)))
@@ -86,6 +69,32 @@ https://guix.gnu.org/en/manual/devel/en/html_node/System-Configuration.html
<<bootfs>>))))
#+end_src
+*** TODO Services
+
+https://guix.gnu.org/en/manual/en/html_node/Services.html
+
+#+begin_src scheme :noweb-ref system-services
+ (services
+ (cons*
+ <<ssh-system-service>>
+ <<trezor-system-packages>>
+ (service cups-service-type
+ (cups-configuration (extensions `(,cups-filters
+ ,epson-inkjet-printer-escpr))
+ (web-interface? #t)))
+ (service git-daemon-service-type)
+ (service gnome-desktop-service-type)
+ (service tor-service-type (tor-configuration
+ (control-socket? #t)))
+ <<trezor-udev-rules>>
+ (modify-services %desktop-services
+ (elogind-service-type
+ configuration =>
+ (elogind-configuration
+ (inherit configuration)
+ (handle-lid-switch 'ignore))))))
+#+end_src
+
** TODO Home configuration
https://guix.gnu.org/en/manual/devel/en/html_node/Home-Configuration.html