diff --git a/home/c/programs/hypr/default.nix b/home/c/programs/hypr/default.nix index 16de424..5b31a78 100644 --- a/home/c/programs/hypr/default.nix +++ b/home/c/programs/hypr/default.nix @@ -10,8 +10,8 @@ chat = getProgFor "discord"; media = getProgFor "spotify"; terminal = getProgFor "alacritty"; - runner = getProgFor "rofi"; - rofi-rbw = getProgFor "rofi-rbw-wayland"; + runner = getProgFor' "rofi-wayland" "rofi"; + rofi-rbw = getProgFor' "rofi-rbw-wayland" "rofi-rbw"; tmux = getProgFor "tmux"; slurp = getProgFor "slurp"; grim = getProgFor "grim"; diff --git a/hosts/artemis/configuration.nix b/hosts/artemis/configuration.nix index e2e7c38..ae4f4d1 100644 --- a/hosts/artemis/configuration.nix +++ b/hosts/artemis/configuration.nix @@ -47,10 +47,7 @@ sessionVariables = {NIXOS_OZONE_WL = "1";}; shells = with pkgs; [fish]; - - # etc."greetd/environments".text = '' - # hyprland - # ''; }; + fonts.packages = with pkgs; [nerdfonts meslo-lgs-nf]; } diff --git a/hosts/hermes/default.nix b/hosts/hermes/default.nix index 8c91497..a49190c 100644 --- a/hosts/hermes/default.nix +++ b/hosts/hermes/default.nix @@ -2,6 +2,7 @@ imports = [ ./hardware-configuration.nix ./configuration.nix + ./quassel.nix ./fail2ban.nix ./containers.nix ./networking.nix diff --git a/hosts/hermes/quassel.nix b/hosts/hermes/quassel.nix new file mode 100644 index 0000000..6bd6c38 --- /dev/null +++ b/hosts/hermes/quassel.nix @@ -0,0 +1,6 @@ +{...}: { + services.quassel = { + enable = true; + interfaces = ["0.0.0.0"]; + }; +}