push
This commit is contained in:
2
home.nix
2
home.nix
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
] else [
|
] else [
|
||||||
./modules/stylix.nix
|
./modules/stylix.nix
|
||||||
./modules/firefox.nix
|
#./modules/firefox.nix
|
||||||
]);
|
]);
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|||||||
4
main.nix
4
main.nix
@@ -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 []);
|
||||||
|
|||||||
@@ -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 = {
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.searx = {
|
||||||
|
enable = true;
|
||||||
|
redisCreateLocally = true;
|
||||||
|
|
||||||
|
settings.server = {
|
||||||
|
bind_address = "::1";
|
||||||
|
|
||||||
|
port = 8080;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user