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 [ ] else [
./modules/stylix.nix ./modules/stylix.nix
./modules/firefox.nix #./modules/firefox.nix
]); ]);
home = { home = {

View File

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

View File

View File

@@ -6,7 +6,7 @@
networkmanager.enable = true; networkmanager.enable = true;
nameservers = ["1.1.1.1" "1.0.0.1"]; nameservers = [ "1.1.1.1" "1.0.0.1" ];
}; };
services = { services = {

View File

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