diff --git a/modules/home/desktop/niri/default.nix b/modules/home/desktop/niri/default.nix index b853dee..6ead488 100644 --- a/modules/home/desktop/niri/default.nix +++ b/modules/home/desktop/niri/default.nix @@ -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;