diff --git a/home-manager/tuiapps/zsh.nix b/home-manager/tuiapps/zsh.nix index a948b55..bd09249 100644 --- a/home-manager/tuiapps/zsh.nix +++ b/home-manager/tuiapps/zsh.nix @@ -14,16 +14,16 @@ shellAliases = { # NixOS aliases nixcfg = "${nixcfg.open}"; - nixclean = "${auth.method} nix-store --gc; nix-collect-garbage -d; notify-send 'NixOS store clean finished.'"; - nixpurge = "${auth.method} nix-collect-garbage --delete-old; notify-send 'NixOS generation removed.'"; - nixoptimize = "${auth.method} nix store optimise; notify-send 'NixOS store optimization finished.'"; + nixclean = "${auth.method} nix-store --gc; nix-collect-garbage -d"; + nixpurge = "${auth.method} nix-collect-garbage --delete-old"; + nixoptimize = "${auth.method} nix store optimise"; # Flake commands flakedate = "${auth.method} nix flake update /etc/nixos"; sysswitch = "${auth.method} nixos-rebuild switch --flake /etc/nixos"; homeswitch = "home-manager switch --flake /etc/nixos"; - nixswitch = "sysswitch; homeswitch; notify-send 'NixOS switch done.'"; - nixdate = "flakedate && sysswitch; homeswitch; notify-send 'NixOS update done.'"; + nixswitch = "sysswitch; homeswitch"; + nixdate = "flakedate && sysswitch; homeswitch"; # Shortcut aliases neo = "clear && fastfetch";