about summary refs log tree commit diff stats
path: root/hosts/tiamat/default.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-02-04 11:19:23 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-02-04 11:19:23 +0100
commit6b6d8d77aad98fd6e988d68fbee86254cb9e3aad (patch)
tree32a5a12dcbc4e770f4b7620fcecdfa74cb8aaf1a /hosts/tiamat/default.nix
parentfix(modules/river): Mark the `init` file executable (diff)
downloadnixos-config-6b6d8d77aad98fd6e988d68fbee86254cb9e3aad.zip
fix(hosts/{apzu,tiamata}): Use the correct neorg package in the mappings
Otherwise, the `neorg dmenu` started by river would provide nothing to
select.
Diffstat (limited to 'hosts/tiamat/default.nix')
-rw-r--r--hosts/tiamat/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/hosts/tiamat/default.nix b/hosts/tiamat/default.nix
index 17c7e72e..d18c0533 100644
--- a/hosts/tiamat/default.nix
+++ b/hosts/tiamat/default.nix
@@ -4,6 +4,7 @@
   baseLib,
   qmk_firmware,
   system,
+  config,
   ...
 }: {
   imports = [
@@ -67,7 +68,7 @@
 
                 # Launcher
                 "O" = {command = ["spawn" "${lib.getExe pkgs.rofi} -show combi -modes combi -combi-modes 'window,drun,run' -show-icons"];};
-                "P" = {command = ["spawn" "${lib.getExe pkgs.neorg} dmenu"];};
+                "P" = {command = ["spawn" "${lib.getExe config.home-manager.users.soispha.soispha.programs.neorg.package} dmenu"];};
                 "Q" = {command = ["spawn" "${lib.getExe pkgs.keepassxc}"];};
                 # "R" = {command = ["spawn" "nheko"];};
                 "S" = {command = ["spawn" "${lib.getExe pkgs.signal-desktop}"];};