modules/home/desktop/niri/default.nix: fix, ghostty

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-04-15 13:16:05 +03:00
parent e96d402f1e
commit d1878d8fe2

View File

@ -5,10 +5,11 @@
lib,
...
}: let
inherit (builtins) removeSuffix;
inherit (lib.strings) removeSuffix;
inherit (lib) mkIf mkEnableOption mkDefault mkForce getExe;
inherit (config.lib.stylix) colors;
inherit (config.stylix) cursor theme;
inherit (config.stylix) cursor;
inherit (osConfig.module.stylix) theme;
inherit (osConfig.networking) hostId;
cfg = config.desktop.niri;
keyboard =
@ -19,7 +20,7 @@
config.xdg.userDirs.pictures;
ifLaptop = mkIf (hostId != "c7f6c4a1");
# TODO: make terminal depent on thing outside a module
terminal = getExe pkgs.wezterm;
terminal = getExe pkgs.ghostty;
launcher = getExe pkgs.fuzzel;
browser = "app.zen_browser.zen";
lockscreen = getExe pkgs.gtklock;