16 lines
314 B
Nix
16 lines
314 B
Nix
{pkgs, ...}: {
|
|
services.vicinae = {
|
|
enable = true;
|
|
systemd = {
|
|
enable = true;
|
|
autoStart = true;
|
|
environment = {
|
|
USE_LAYER_SHELL = 1;
|
|
};
|
|
};
|
|
};
|
|
|
|
# Ensure vicinae themes directory exists for matugen output
|
|
home.file.".local/share/vicinae/themes/.keep".text = "";
|
|
}
|