14 lines
264 B
Nix
14 lines
264 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [ inputs.vicinae.homeManagerModules.default ];
|
|
|
|
services.vicinae = {
|
|
enable = true;
|
|
autoStart = true;
|
|
};
|
|
|
|
wayland.windowManager.hyprland.settings.exec-once = [
|
|
"systemctl enable --now --user vicinae.service"
|
|
];
|
|
}
|