rofi fixes and quassel
Some checks are pending
/ ci (push) Waiting to run

This commit is contained in:
Callum Leslie 2024-09-13 15:52:57 +01:00
parent b86629718d
commit 3c5f85bbb1
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
4 changed files with 10 additions and 6 deletions

View file

@ -10,8 +10,8 @@
chat = getProgFor "discord"; chat = getProgFor "discord";
media = getProgFor "spotify"; media = getProgFor "spotify";
terminal = getProgFor "alacritty"; terminal = getProgFor "alacritty";
runner = getProgFor "rofi"; runner = getProgFor' "rofi-wayland" "rofi";
rofi-rbw = getProgFor "rofi-rbw-wayland"; rofi-rbw = getProgFor' "rofi-rbw-wayland" "rofi-rbw";
tmux = getProgFor "tmux"; tmux = getProgFor "tmux";
slurp = getProgFor "slurp"; slurp = getProgFor "slurp";
grim = getProgFor "grim"; grim = getProgFor "grim";

View file

@ -47,10 +47,7 @@
sessionVariables = {NIXOS_OZONE_WL = "1";}; sessionVariables = {NIXOS_OZONE_WL = "1";};
shells = with pkgs; [fish]; shells = with pkgs; [fish];
# etc."greetd/environments".text = ''
# hyprland
# '';
}; };
fonts.packages = with pkgs; [nerdfonts meslo-lgs-nf]; fonts.packages = with pkgs; [nerdfonts meslo-lgs-nf];
} }

View file

@ -2,6 +2,7 @@
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
./configuration.nix ./configuration.nix
./quassel.nix
./fail2ban.nix ./fail2ban.nix
./containers.nix ./containers.nix
./networking.nix ./networking.nix

6
hosts/hermes/quassel.nix Normal file
View file

@ -0,0 +1,6 @@
{...}: {
services.quassel = {
enable = true;
interfaces = ["0.0.0.0"];
};
}