hosts/ni: revert Guix service config

This commit is contained in:
Gabriel Arazas 2023-11-24 11:38:52 +08:00
parent 13603e9d91
commit 8e122373d7
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 6 additions and 4 deletions

View File

@ -215,6 +215,11 @@
}; };
services.openssh.enable = lib.mkDefault true; services.openssh.enable = lib.mkDefault true;
# We're setting Guix service package with the flake-provided package.
# This is to prevent problems setting with overlays as much as I like
# using them.
services.guix.package = inputs.guix-overlay.packages.${config.nixpkgs.system}.guix;
# It's following the 'nixpkgs' flake input which should be in unstable # It's following the 'nixpkgs' flake input which should be in unstable
# branches. Not to mention, most of the system configurations should # branches. Not to mention, most of the system configurations should
# have this attribute set explicitly by default. # have this attribute set explicitly by default.

View File

@ -142,10 +142,7 @@
# Installing Guix within NixOS. Now that's some OTP rarepair material right # Installing Guix within NixOS. Now that's some OTP rarepair material right
# there. # there.
services.guix = { services.guix.enable = true;
enable = true;
package = pkgs.guix;
};
# Set your time zone. # Set your time zone.
time.timeZone = "Asia/Manila"; time.timeZone = "Asia/Manila";