- Update flake inputs (home-manager, HyprPanel, nixpkgs variants, NUR, AGENTS) - Switch OpenCode agents to opencode/ model provider - Remove webcord package from media config - Fix thunar plugins namespace (xfce.* → pkgs.*) - Upgrade m3-kratos kernel to 6.18 - Disable ADB and qdrant service on m3-kratos - Enable qdrant overlay using stable nixpkgs
38 lines
737 B
Nix
38 lines
737 B
Nix
{
|
|
imports = [
|
|
./containers
|
|
./mem0.nix
|
|
./n8n.nix
|
|
./postgres.nix
|
|
./sound.nix
|
|
./tailscale.nix
|
|
./udev.nix
|
|
./wireguard.nix
|
|
];
|
|
services = {
|
|
hypridle.enable = true;
|
|
printing.enable = true;
|
|
gvfs.enable = true;
|
|
trezord.enable = true;
|
|
gnome.gnome-keyring.enable = true;
|
|
qdrant.enable = false;
|
|
stirling-pdf.enable = true;
|
|
avahi = {
|
|
enable = true;
|
|
nssmdns4 = true;
|
|
publish = {
|
|
addresses = true;
|
|
workstation = true;
|
|
userServices = true;
|
|
};
|
|
};
|
|
displayManager.gdm.enable = true;
|
|
};
|
|
systemd.sleep.extraConfig = ''
|
|
AllowSuspend=no
|
|
AllowHibernation=no
|
|
AllowHybridSleep=no
|
|
AllowSuspendThenHibernate=no
|
|
'';
|
|
}
|