Files
sydnix/modules/home/sydpkgs.nix
T
msyds 3ad33b734a
build / build (push) Failing after 53s
chore: bump all
2026-06-25 05:55:08 -06:00

13 lines
283 B
Nix

{ config, lib, pkgs, inputs, ... }:
let cfg = config.sydnix.sydpkgs;
in {
options.sydnix.sydpkgs = {
overlay.enable = lib.mkEnableOption "the Sydpkgs overlay";
};
config = lib.mkIf cfg.overlay.enable {
# nixpkgs.overlays = [ inputs.sydpkgs.overlays.default ];
};
}