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(portable-hosts): more home-manager related chaos

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

+4 -2
+4 -2
hosts/portable/amd64/configuration.nix
··· 29 29 ../../../shared/desktop/firefox.nix 30 30 ../../../shared/shells/bash.nix 31 31 ../../../shared/server/cockpit.nix 32 + ./hardware-configuration.nix 32 33 ]; 33 34 34 35 # Bootloader. ··· 92 93 93 94 # prep for home-manager 94 95 home-manager = { 95 - enable = true; 96 + #enable = true; 96 97 useGlobalPkgs = true; 97 98 users.ajhalili2006 = baseHmConfig // { 98 99 home.username = "ajhalili2006"; 99 100 home.homeDirectory = "/home/ajhalili2006"; 101 + home.stateVersion = "25.05"; 100 102 }; 101 103 }; 102 104 ··· 162 164 # this value at the release version of the first install of this system. 163 165 # Before changing this value read the documentation for this option 164 166 # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). 165 - system.stateVersion = "24.11"; # Did you read the comment? 167 + system.stateVersion = "25.05"; # Did you read the comment? 166 168 167 169 }