6919f27890
Clearer naming to distinguish NixOS system modules from Home Manager modules (nixos/ vs home/). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
195 B
Nix
11 lines
195 B
Nix
{pkgs, ...}: {
|
|
system.stateVersion = "25.05";
|
|
nixpkgs.config.allowUnfree = true;
|
|
nix = {
|
|
distributedBuilds = true;
|
|
settings = {
|
|
builders-use-substitutes = true;
|
|
};
|
|
};
|
|
}
|