From 58bde11d4f1195fd81c8ee2855fbd54013fa6c2e Mon Sep 17 00:00:00 2001 From: Victor Mignot Date: Thu, 1 Aug 2024 22:47:39 +0200 Subject: [PATCH] Fix fish issue --- modules/workstation/home-manager/fish.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/workstation/home-manager/fish.nix b/modules/workstation/home-manager/fish.nix index 28c6eee..40f0629 100644 --- a/modules/workstation/home-manager/fish.nix +++ b/modules/workstation/home-manager/fish.nix @@ -2,7 +2,6 @@ lib, pkgs, config, - nvidiaGPU, ... }: with lib; @@ -11,7 +10,7 @@ let if config.my.desktop.sway.enable then '' if [ -z $DISPLAY ] && [ "$(tty)" = /dev/tty1 ] - exec sway + exec ${pkgs.sway}/bin/sway end '' else @@ -34,7 +33,7 @@ in shellInit = '' set -g theme_color_scheme nord - ${swayLauncScript} + ${swayLaunchScript} ''; }; }