From 00804dae34b61f85e232c614337320f102492e22 Mon Sep 17 00:00:00 2001 From: Jimbo Date: Tue, 10 Sep 2024 15:42:37 -0400 Subject: [PATCH] Finalize whatever --- home-manager/tuiapps/zsh.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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";