16 lines
397 B
Nix
16 lines
397 B
Nix
{ config, inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.vicinae.homeManagerModules.default
|
|
];
|
|
|
|
services.vicinae = {
|
|
enable = true;
|
|
autoStart = true;
|
|
};
|
|
|
|
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";
|
|
}
|