From 9b7a6586ca6820d6f07a7886a262572eb836c5ab Mon Sep 17 00:00:00 2001 From: EinEtwas Date: Sun, 13 Oct 2024 20:12:52 +0200 Subject: [PATCH] fix: add another missing semicolon --- modules/shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/shell.nix b/modules/shell.nix index 09e6587..11c0eff 100644 --- a/modules/shell.nix +++ b/modules/shell.nix @@ -4,6 +4,6 @@ programs.zsh.ohMyZsh.theme = "agnoster"; environment.shellAliases = { - os-update = "sudo nixos-rebuild switch --flake '/home/rhea/nix-config'" + os-update = "sudo nixos-rebuild switch --flake '/home/rhea/nix-config'"; }; }