14b4bdb585
- Add shared modules for boot, hardware, networking, input, and host defaults - Move host-specific TOML flags to new option namespaces - Update SSH and service defaults for the new layout
20 lines
409 B
Nix
20 lines
409 B
Nix
{inputs, ...}: {
|
|
imports = [inputs.vicinae.homeManagerModules.default];
|
|
|
|
syncthing.enable = true;
|
|
|
|
services.easyeffects.enable = true;
|
|
|
|
# services.pueue.enable = true; # process queue in rust
|
|
services.ssh-agent.enable = true;
|
|
|
|
services.kdeconnect.enable = true;
|
|
|
|
services.vicinae = {
|
|
enable = true;
|
|
systemd.enable = true;
|
|
};
|
|
|
|
xdg.configFile."vicinae/settings.json".enable = false;
|
|
}
|