feat: beepr
This commit is contained in:
parent
39cfa3f054
commit
0a745b1cab
2 changed files with 12 additions and 25 deletions
|
|
@ -301,29 +301,15 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
redisCreateLocally = true;
|
redisCreateLocally = true;
|
||||||
environmentFile = "/etc/searxng/searxng.env";
|
environmentFile = "/etc/searxng/searxng.env";
|
||||||
|
# Use custom settings.yml file from nix-config
|
||||||
|
settingsFile = ./config/settings.yml;
|
||||||
|
# Override specific settings via NixOS options (these take precedence)
|
||||||
settings = {
|
settings = {
|
||||||
server = {
|
server = {
|
||||||
bind_address = "127.0.0.1";
|
bind_address = "127.0.0.1";
|
||||||
port = 8888;
|
port = 8888;
|
||||||
# secret_key is set via environmentFile to avoid exposing it in nix store
|
# secret_key is set via environmentFile to avoid exposing it in nix store
|
||||||
};
|
};
|
||||||
general = {
|
|
||||||
debug = false;
|
|
||||||
instance_name = "SearXNG";
|
|
||||||
donation_url = false;
|
|
||||||
contact_url = false;
|
|
||||||
privacypolicy_url = false;
|
|
||||||
enable_metrics = false;
|
|
||||||
};
|
|
||||||
ui = {
|
|
||||||
default_locale = "en";
|
|
||||||
default_theme = "simple";
|
|
||||||
};
|
|
||||||
search = {
|
|
||||||
safe_search = 0;
|
|
||||||
autocomplete = "google";
|
|
||||||
autocomplete_min = 2;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
17
home.nix
17
home.nix
|
|
@ -83,6 +83,7 @@
|
||||||
appimage-run
|
appimage-run
|
||||||
obsidian
|
obsidian
|
||||||
gh
|
gh
|
||||||
|
beeper
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -100,7 +101,7 @@
|
||||||
editor = {
|
editor = {
|
||||||
line-number = "relative";
|
line-number = "relative";
|
||||||
lsp.display-messages = true;
|
lsp.display-messages = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
languages = {
|
languages = {
|
||||||
haskell = {
|
haskell = {
|
||||||
|
|
@ -118,20 +119,20 @@
|
||||||
programs.zellij = {
|
programs.zellij = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableBashIntegration = true;
|
enableBashIntegration = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
# Default shell (using bash as configured in your system)
|
# Default shell (using bash as configured in your system)
|
||||||
default_shell = "bash";
|
default_shell = "bash";
|
||||||
default_layout = "compact";
|
default_layout = "compact";
|
||||||
pane_frames = false;
|
pane_frames = false;
|
||||||
|
|
||||||
# Mouse and interaction settings - enable for proper pane handling
|
# Mouse and interaction settings - enable for proper pane handling
|
||||||
mouse_mode = true;
|
mouse_mode = true;
|
||||||
copy_on_select = true;
|
copy_on_select = true;
|
||||||
|
|
||||||
show_startup_tips = false;
|
show_startup_tips = false;
|
||||||
show_release_notes = false;
|
show_release_notes = false;
|
||||||
|
|
||||||
on_force_close = "detach";
|
on_force_close = "detach";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -178,7 +179,7 @@
|
||||||
ns = "sudo nixos-rebuild switch --flake ~/Documents/nix-config#jet";
|
ns = "sudo nixos-rebuild switch --flake ~/Documents/nix-config#jet";
|
||||||
nd = "nix develop";
|
nd = "nix develop";
|
||||||
h = "hx";
|
h = "hx";
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -263,7 +264,7 @@
|
||||||
categories = ["System" "TerminalEmulator"];
|
categories = ["System" "TerminalEmulator"];
|
||||||
comment = "Fast, featureful, GPU based terminal emulator";
|
comment = "Fast, featureful, GPU based terminal emulator";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Autostart applications using proper desktop files
|
# Autostart applications using proper desktop files
|
||||||
xdg.autostart = {
|
xdg.autostart = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -271,7 +272,7 @@
|
||||||
"${pkgs.kitty}/share/applications/kitty.desktop"
|
"${pkgs.kitty}/share/applications/kitty.desktop"
|
||||||
"${config.programs.zen-browser.package}/share/applications/zen-twilight.desktop"
|
"${config.programs.zen-browser.package}/share/applications/zen-twilight.desktop"
|
||||||
"${pkgs.code-cursor}/share/applications/cursor.desktop"
|
"${pkgs.code-cursor}/share/applications/cursor.desktop"
|
||||||
"${pkgs.signal-desktop}/share/applications/signal.desktop"
|
"${pkgs.beeper}/share/applications/beeper.desktop"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue