modules: fix dankMaterialShell build

This commit is contained in:
2025-11-14 01:02:25 +08:00
parent b91659d4f5
commit fc5619650b

View File

@@ -14,17 +14,12 @@ inputs: let inherit (inputs) topInputs; in
topInputs.nixvirt.nixosModules.default
topInputs.niri.nixosModules.niri
{ config.niri-flake.cache.enable = false; }
(inputs:
{
config =
{
home-manager.sharedModules =
[
topInputs.plasma-manager.homeModules.plasma-manager
topInputs.catppuccin.homeModules.catppuccin
topInputs.dankmaterialshell.homeModules.dankMaterialShell
];
};
})
{ config.home-manager.sharedModules =
[
topInputs.plasma-manager.homeModules.plasma-manager
topInputs.catppuccin.homeModules.catppuccin
topInputs.dankmaterialshell.homeModules.dankMaterialShell.default
topInputs.dankmaterialshell.homeModules.dankMaterialShell.niri
];}
] ++ (inputs.localLib.findModules ./.);
}