diff --git a/home/features/cli/default.nix b/home/features/cli/default.nix index bb3fb9d..f6018cf 100644 --- a/home/features/cli/default.nix +++ b/home/features/cli/default.nix @@ -2,7 +2,7 @@ imports = [ ./fish.nix ./fzf.nix - ./neofetch.nix + ./fastfetch.nix ./secrets.nix ./starship.nix ./zellij.nix diff --git a/home/features/cli/fastfetch.nix b/home/features/cli/fastfetch.nix new file mode 100644 index 0000000..9ab3a2d --- /dev/null +++ b/home/features/cli/fastfetch.nix @@ -0,0 +1,15 @@ +{ + config, + lib, + pkgs, + ... +}: +with lib; let + cfg = config.features.cli.fastfetch; +in { + options.features.cli.fastfetch.enable = mkEnableOption "enable fastfetch"; + + config = mkIf cfg.enable { + home.packages = with pkgs; [fastfetch]; + }; +} diff --git a/home/features/cli/neofetch.nix b/home/features/cli/neofetch.nix deleted file mode 100644 index e4123da..0000000 --- a/home/features/cli/neofetch.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: -with lib; let - cfg = config.features.cli.neofetch; -in { - options.features.cli.neofetch.enable = mkEnableOption "enable neofetch"; - - config = mkIf cfg.enable { - home.packages = with pkgs; [neofetch]; - }; -} diff --git a/home/features/desktop/hyprland.nix b/home/features/desktop/hyprland.nix index 053095e..80f7d52 100644 --- a/home/features/desktop/hyprland.nix +++ b/home/features/desktop/hyprland.nix @@ -132,7 +132,7 @@ bind = [ "$mainMod, return, exec, kitty -e zellij-ps" - "$mainMod, t, exec, kitty -e fish -c 'neofetch; exec fish'" + "$mainMod, t, exec, kitty -e fish -c 'fastfetch; exec fish'" "$mainMod SHIFT, e, exec, kitty -e zellij_nvim" "$mainMod, o, exec, hyprctl setprop activewindow opaque toggle" "$mainMod, b, exec, thunar" diff --git a/home/m3tam3re/m3-ares.nix b/home/m3tam3re/m3-ares.nix index 834974f..aed6128 100644 --- a/home/m3tam3re/m3-ares.nix +++ b/home/m3tam3re/m3-ares.nix @@ -50,7 +50,7 @@ in { cli = { fish.enable = true; fzf.enable = true; - neofetch.enable = true; + fastfetch.enable = true; secrets.enable = true; starship.enable = true; }; diff --git a/home/m3tam3re/m3-atlas.nix b/home/m3tam3re/m3-atlas.nix index 1794a09..74858b2 100644 --- a/home/m3tam3re/m3-atlas.nix +++ b/home/m3tam3re/m3-atlas.nix @@ -9,7 +9,7 @@ cli = { fish.enable = true; fzf.enable = true; - neofetch.enable = true; + fastfetch.enable = true; secrets.enable = false; starship.enable = true; }; diff --git a/home/m3tam3re/m3-helios.nix b/home/m3tam3re/m3-helios.nix index 1794a09..74858b2 100644 --- a/home/m3tam3re/m3-helios.nix +++ b/home/m3tam3re/m3-helios.nix @@ -9,7 +9,7 @@ cli = { fish.enable = true; fzf.enable = true; - neofetch.enable = true; + fastfetch.enable = true; secrets.enable = false; starship.enable = true; }; diff --git a/home/m3tam3re/m3-kratos.nix b/home/m3tam3re/m3-kratos.nix index 33c5baf..75bec4f 100644 --- a/home/m3tam3re/m3-kratos.nix +++ b/home/m3tam3re/m3-kratos.nix @@ -50,7 +50,7 @@ in { cli = { fish.enable = true; fzf.enable = true; - neofetch.enable = true; + fastfetch.enable = true; secrets.enable = true; starship.enable = true; };