Files
sydnix/modules/home/sydpkgs.nix
T
2026-06-24 15:04:58 -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 ];
};
}