9 lines
324 B
Nix
9 lines
324 B
Nix
# Legacy configuration.nix - most functionality moved to modules
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# This value defines the first version of NixOS you have installed on this particular machine.
|
|
# Do NOT change this value unless you have manually inspected all the changes it would make.
|
|
system.stateVersion = "25.05";
|
|
}
|
|
|