Files
2026-04-19 14:59:30 -03:00

15 lines
309 B
Nix

{ lib, ... }:
{
imports = [
./kitty/kitty.nix
];
options.mods = {
flakePath = lib.mkOption {
type = lib.types.str;
default = lib.mkError "Option 'mods.flakePath' must be explicitly set.";
description = "The absolute path of this flake. Must be explicitly set.";
};
};
}