hosts/ni: update Guix service config

This commit is contained in:
Gabriel Arazas 2023-11-22 16:04:40 +08:00
parent 55f9db7599
commit 112e155aa4
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 6 additions and 7 deletions

View File

@ -210,11 +210,6 @@
};
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
# branches. Not to mention, most of the system configurations should
# have this attribute set explicitly by default.

View File

@ -140,8 +140,12 @@
exploitdb
];
# Enable Guix service.
services.guix.enable = true;
# Installing Guix within NixOS. Now that's some OTP rarepair material right
# there.
services.guix = {
enable = true;
package = pkgs.guix;
};
# Set your time zone.
time.timeZone = "Asia/Manila";