NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(nix): bump stateVersion to 26.05

Since NixOS 25.11 is out lately, it's time to bump the stateVersion
to the next release's state version.

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+4 -4
+1 -1
flake.nix
··· 349 349 } 350 350 zen-browser.homeModules.beta 351 351 chaotic.homeManagerModules.default 352 - ./shared/home-manager/main.nix 352 + ./shared/home-manager/nogui.nix 353 353 { 354 354 home.username = "ajhalili2006"; 355 355 home.homeDirectory = "/home/ajhalili2006";
+1 -1
shared/home-manager/main.nix
··· 27 27 # You should not change this value, even if you update Home Manager. If you do 28 28 # want to update the value, then make sure to first check the Home Manager 29 29 # release notes. 30 - home.stateVersion = "25.11"; # Please read the comment before changing. 30 + home.stateVersion = "26.05"; # Please read the comment before changing. 31 31 32 32 home.sessionPath = [ 33 33 "$HOME/bin"
+1 -1
shared/home-manager/nogui.nix
··· 16 16 # You should not change this value, even if you update Home Manager. If you do 17 17 # want to update the value, then make sure to first check the Home Manager 18 18 # release notes. 19 - home.stateVersion = "25.05"; # Please read the comment before changing. 19 + home.stateVersion = "26.05"; # Please read the comment before changing. 20 20 21 21 home.sessionPath = [ 22 22 "$HOME/bin"
+1 -1
shared/nix.nix
··· 133 133 # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). 134 134 # TODO: Always bump this to next point release once the current value is 135 135 # officially released to stable after reading the changelog. 136 - system.stateVersion = "25.11"; # Did you read the comment? 136 + system.stateVersion = "26.05"; # Did you read the comment? 137 137 }