nix: use package from module in default
All checks were successful
Test / ShareFS (push) Successful in 35s
Test / Sandbox (push) Successful in 43s
Test / Sandbox (race detector) (push) Successful in 43s
Test / Hakurei (race detector) (push) Successful in 48s
Test / Hakurei (push) Successful in 48s
Test / Hpkg (push) Successful in 45s
Test / Create distribution (push) Successful in 46s
Test / Flake checks (push) Successful in 1m41s

This makes overriding hakurei easier. Also avoids building hakurei twice since nix does that for some reason.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-01-11 03:50:08 +09:00
parent 2494ede106
commit 423808ac76

View File

@@ -1,8 +1,15 @@
packages:
{ lib, pkgs, ... }:
{
lib,
pkgs,
config,
...
}:
let
inherit (lib) types mkOption mkEnableOption;
cfg = config.environment.hakurei;
in
{
@@ -43,7 +50,10 @@ in
sharefs = {
package = mkOption {
type = types.package;
default = packages.${pkgs.stdenv.hostPlatform.system}.sharefs;
default = pkgs.linkFarm "sharefs" {
"bin/sharefs" = "${cfg.package}/libexec/sharefs";
"bin/mount.fuse.sharefs" = "${cfg.package}/libexec/sharefs";
};
description = "The sharefs package to use.";
};