8 lines
158 B
Nix
8 lines
158 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
system.stateVersion = "25.11";
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|