This commit is contained in:
4DBug
2026-02-07 22:49:27 -06:00
parent 5c96472dbd
commit 6e0a35e990
5 changed files with 18 additions and 4 deletions

View File

@@ -7,7 +7,7 @@
] else [
./modules/stylix.nix
./modules/firefox.nix
#./modules/firefox.nix
]);
home = {

View File

@@ -13,7 +13,7 @@
./modules/mailserver.nix
./modules/vscode-server.nix
./modules/copyparty.nix
./modules/monitor.nix
./modules/searxng.nix
({ pkgs, ... }: {
environment.systemPackages = with pkgs; [
@@ -25,10 +25,10 @@
./modules/cosmic.nix
./modules/graphics.nix
./modules/audio.nix
./modules/home-manager.nix
./modules/swap.nix
./modules/virtualisation.nix
./modules/sshfs.nix
#./modules/firefox.nix
]) ++ (if device == "laptop" then [
./modules/mpd.nix
] else []);

View File

View File

@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
services.searx = {
enable = true;
redisCreateLocally = true;
settings.server = {
bind_address = "::1";
port = 8080;
};
};
}