From 704b95dd79bc397844c118829cc99f2cc49adc2c Mon Sep 17 00:00:00 2001 From: Miranda Marquez Date: Wed, 12 Jun 2024 15:17:05 -0800 Subject: [PATCH] add guix. also comment about dvd rule --- configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configuration.nix b/configuration.nix index fd606aa..97a417d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -106,6 +106,8 @@ openssl openssl.dev openssl.out sbcl + +guix # cmake # harfbuzz # freetype @@ -131,6 +133,7 @@ sbcl # glibc # gobject-introspection ]; + # for Apple Super Driver - usb dvd player services.udev.extraRules = '' ACTION=="add", ATTRS{idProduct}=="1500", ATTRS{idVendor}=="05ac", DRIVERS=="usb", RUN+="${pkgs.sg3_utils}/bin/sg_raw /dev/$kernel EA 00 00 00 00 00 01" ''; @@ -150,6 +153,7 @@ sbcl # Enable the OpenSSH daemon. services.openssh.enable = true; + services.guix.enable = true; # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ];