diff --git a/home/programs/foot.nix b/home/programs/foot.nix index 740578b..91a21ba 100644 --- a/home/programs/foot.nix +++ b/home/programs/foot.nix @@ -1,8 +1,5 @@ { - programs.foot = { - enable = true; - settings = {}; - }; + programs.foot.enable = true; xdg.desktopEntries = builtins.listToAttrs (map (x: { name = "${x}"; diff --git a/home/shell/fish.nix b/home/shell/fish.nix index 958da57..4b6fdf7 100644 --- a/home/shell/fish.nix +++ b/home/shell/fish.nix @@ -1,3 +1,8 @@ { - programs.fish.enable = true; + programs.fish = { + enable = true; + interactiveShellInit = '' + set fish_greeting + ''; + }; } diff --git a/home/wayland/hyprland/settings.nix b/home/wayland/hyprland/settings.nix index fc688eb..8a12dd2 100644 --- a/home/wayland/hyprland/settings.nix +++ b/home/wayland/hyprland/settings.nix @@ -46,8 +46,8 @@ animation = [ "border, 1, 2, default" "fade, 1, 4, default" - "windows, 1, 3, default, popin 80%" - "workspaces, 1, 2, default, slide" + "windows, 1, 1, default, popin 80%" + "workspaces, 1, 0.8, default, slide" ]; };