Rename the namespace of the home-modules

This commit is contained in:
SebastianStork 2025-05-27 22:47:12 +02:00
parent 06623cd93a
commit f0df314f21
25 changed files with 74 additions and 68 deletions

View file

@ -5,12 +5,12 @@
...
}:
{
options.myConfig.deUtils.cliphist.enable = lib.mkEnableOption "";
options.custom.deUtils.services.cliphist.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.deUtils.cliphist.enable {
config = lib.mkIf config.custom.deUtils.services.cliphist.enable {
assertions = [
{
assertion = config.myConfig.deUtils.rofi.enable;
assertion = config.custom.deUtils.programs.rofi.enable;
message = "cliphist requires rofi";
}
];