modules/theme: add nvf import

This commit is contained in:
Anthony Rodriguez 2024-12-05 18:31:26 +01:00
parent 6c8626dd18
commit 8671bf2816
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -11,7 +11,9 @@
inherit (lib') generateGtkColors; inherit (lib') generateGtkColors;
cfg = config.theme; cfg = config.theme;
in { in {
imports = [./gtk.nix]; imports = [
./gtk.nix
];
options.theme = { options.theme = {
enable = mkEnableOption "theme"; enable = mkEnableOption "theme";
schemeName = mkOption { schemeName = mkOption {
@ -63,6 +65,8 @@ in {
mkIf cfg.enable mkIf cfg.enable
{ {
home-manager.users.nezia = { home-manager.users.nezia = {
imports = [inputs.nvf.homeManagerModules.default];
home.pointerCursor = { home.pointerCursor = {
inherit (config.theme.cursorTheme) name package size; inherit (config.theme.cursorTheme) name package size;
}; };