mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
23 lines
399 B
Nix
23 lines
399 B
Nix
|
|
{
|
||
|
|
config,
|
||
|
|
lib,
|
||
|
|
inputs,
|
||
|
|
...
|
||
|
|
}: {
|
||
|
|
config = lib.mkIf config.fireproof.desktop.enable {
|
||
|
|
fireproof.home-manager = {
|
||
|
|
imports = [
|
||
|
|
inputs.dms-plugin-registry.modules.default
|
||
|
|
];
|
||
|
|
programs.dank-material-shell.plugins = {
|
||
|
|
emojiLauncher = {
|
||
|
|
enable = true;
|
||
|
|
settings = {
|
||
|
|
enabled = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|