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: do one-liner inherits on extraSpecialArgs

A bit of copiloting with GPT-5 model involved to fix a failing minimal
ISO build.

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

+23 -15
+23 -15
flake.nix
··· 107 107 let 108 108 dev-pkgs = import ./pkgs; 109 109 in 110 - flake-utils.lib.eachDefaultSystem (system: 110 + flake-utils.lib.eachDefaultSystem ( 111 + system: 111 112 let 112 113 pkgs = import nixpkgs { inherit system; }; 113 114 in ··· 173 174 ]; 174 175 175 176 specialArgs = { 176 - inherit zen-browser; 177 + inherit zen-browser self; 177 178 }; 178 179 }; 179 180 ··· 192 193 ]; 193 194 194 195 specialArgs = { 195 - inherit zen-browser; 196 + inherit zen-browser self; 196 197 }; 197 198 }; 198 199 ··· 205 206 ./hosts/stellapent-cier/configuration.nix 206 207 ]; 207 208 specialArgs = { 208 - inherit zen-browser; 209 + inherit zen-browser self; 209 210 }; 210 211 }; 211 212 }; ··· 219 220 inherit lib; 220 221 pkgs = nixpkgs.legacyPackages.x86_64-linux; 221 222 extraSpecialArgs = { 222 - inherit self; 223 - inherit dev-pkgs; 224 - inherit zen-browser; 225 - inherit nix4vscode; 223 + inherit 224 + self 225 + dev-pkgs 226 + zen-browser 227 + nix4vscode 228 + ; 226 229 }; 227 230 modules = [ 228 231 { ··· 257 260 plain = home-manager.lib.homeManagerConfiguration { 258 261 pkgs = nixpkgs.legacyPackages.x86_64-linux; 259 262 extraSpecialArgs = { 260 - inherit self; 261 - inherit dev-pkgs; 262 - inherit zen-browser; 263 - inherit nix4vscode; 263 + inherit 264 + self 265 + dev-pkgs 266 + zen-browser 267 + nix4vscode 268 + ; 264 269 }; 265 270 modules = [ 266 271 { ··· 293 298 arm64-plain = home-manager.lib.homeManagerConfiguration { 294 299 pkgs = nixpkgs.legacyPackages.aarch64-linux; 295 300 extraSpecialArgs = { 296 - inherit self; 297 - inherit dev-pkgs; 298 - inherit zen-browser; 301 + inherit 302 + self 303 + dev-pkgs 304 + zen-browser 305 + nix4vscode 306 + ; 299 307 }; 300 308 modules = [ 301 309 {