feat(home): adjust vicinae and eilmeldung configurations feat(neovim): enable folding in neovim configuration fix(nixos): disable resolved dns and remove fallback dns on tako chore(nixos): add pihole and resolved services to tsuba chore(home): remove unused packages from programs chore(nixos): add gamescope-wsi and vulkan-tools to steam configuration chore(nixos): update navidrome service with sops integration and systemd tmpfiles chore(darwin): use dynamic user in shiro configuration chore(secrets): add lastfm and pihole secrets to secrets.yaml
20 lines
365 B
Nix
20 lines
365 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
device,
|
|
...
|
|
}: {
|
|
imports = [inputs.vicinae.homeManagerModules.default];
|
|
services.vicinae = {
|
|
enable = device.is "ryu";
|
|
systemd = {
|
|
enable = true;
|
|
autoStart = true;
|
|
};
|
|
extensions = [];
|
|
# package = pkgs.vicinae.overrideAttrs (old: {
|
|
# patches = [../../patches/vicinae-ctrl-np.patch];
|
|
# });
|
|
};
|
|
}
|