From c0fefbbf623b4e3d35eee381a1d802f6ccfa2c44 Mon Sep 17 00:00:00 2001 From: cubernetes Date: Tue, 26 May 2026 21:25:15 +0200 Subject: [PATCH] Add simplex, arandr, disable firewall, xset r rate 200 60 --- hosts/fw/configuration.nix | 4 +++- modules/home-manager/bash.nix | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/fw/configuration.nix b/hosts/fw/configuration.nix index dfe12e8..23ab1fc 100644 --- a/hosts/fw/configuration.nix +++ b/hosts/fw/configuration.nix @@ -152,6 +152,8 @@ keepassxc nextcloud-client dmenu + simplex-chat-desktop + arandr ]; # Some programs need SUID wrappers, can be configured further or are @@ -171,7 +173,7 @@ # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether. - # networking.firewall.enable = false; + networking.firewall.enable = false; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions diff --git a/modules/home-manager/bash.nix b/modules/home-manager/bash.nix index 7289f06..64db27e 100644 --- a/modules/home-manager/bash.nix +++ b/modules/home-manager/bash.nix @@ -3,6 +3,9 @@ { programs.bash = { enable = true; + initExtra = '' + xset r rate 200 60 + '' shellAliases = { rb = "sudo nixos-rebuild switch --flake /etc/nixos#fw"; nx = "vim ~/nixos-config/hosts/fw/configuration.nix";