1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

feat: secure MQTT broker with passwords

This commit is contained in:
oddlama 2023-03-14 02:54:54 +01:00
parent 9028295fd5
commit 47d1d73ad1
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
11 changed files with 140 additions and 33 deletions

View file

@ -3,6 +3,9 @@
pkgs,
...
}: {
home.sessionVariables = {
TERMINFO_DIRS = "${pkgs.kitty.terminfo.outPath}/share/terminfo";
};
programs.kitty = {
enable = true;
package = pkgs.kitty.overrideAttrs (finalAttrs: prevAttrs: {
@ -14,9 +17,6 @@
size = 10;
};
settings = {
# Use xterm-256color because copying terminfo-kitty is painful.
term = "xterm-256color";
# Do not wait for inherited child processes.
close_on_child_death = "yes";