upgrade to 24.05

This commit is contained in:
2025-07-22 10:59:11 +02:00
parent bc291c2aff
commit b2731111a6
2 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ with lib;
vars.interfaces = [""];
# DO NOT TOUCH!!!!!!!!!!!!!!!!!!!!!!!!!!
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
vars.stateVersion = "23.11"; # Default to the oldest supported version in my fleet
vars.stateVersion = "24.05"; # Default to the oldest supported version in my fleet
# DO NOT TOUCH!!!!!!!!!!!!!!!!!!!!!!!!!!
+4 -5
View File
@@ -33,6 +33,9 @@ in
syntaxHighlighting.enable = true;
enableCompletion = true;
autosuggestions.enable = true;
extraPackages = [
pkgs.nix-zsh-completions
];
shellAliases = {
nixapply = "sudo nixos-rebuild switch";
nixupdate = "sudo nix-channel --update && sudo nixos-rebuild switch";
@@ -45,10 +48,6 @@ in
enable = true;
plugins = [ "git" "python" "man" "command-not-found" "safe-paste" "tmux" "zoxide" "kubectl" "zsh-interactive-cd" ];
theme = "agnoster";
customPkgs = [
pkgs.nix-zsh-completions
# and even more...
];
};
};
}
}