26 lines
568 B
Nix
26 lines
568 B
Nix
{
|
|
config,
|
|
inputs,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
inputs.vicinae.homeManagerModules.default
|
|
];
|
|
|
|
services.vicinae = {
|
|
enable = true;
|
|
autoStart = true;
|
|
package = pkgs.vicinae;
|
|
};
|
|
|
|
xdg.configFile."vicinae/vicinae.json".source =
|
|
lib.mkForce "${config.dotfiles.path}/.config/vicinae/vicinae.json";
|
|
|
|
xdg.configFile."matugen/config.toml".source = "${config.dotfiles.path}/.config/matugen/config.toml";
|
|
xdg.configFile."matugen/templates/vicinae.toml".source =
|
|
"${config.dotfiles.path}/.config/matugen/templates/vicinae.toml";
|
|
}
|