feat(nixos): add global accent option (#164)

Closes #134
This commit is contained in:
Weathercold 2024-05-08 19:27:03 -04:00 committed by GitHub
parent 068e0d406b
commit 8d3e50a677
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,5 +7,11 @@
default = "mocha";
description = "Global Catppuccin flavour";
};
accent = lib.mkOption {
type = lib.ctp.types.accentOption;
default = "mauve";
description = "Global Catppuccin accent";
};
};
}