mirror of
https://github.com/0x1d/nix.git
synced 2025-12-14 14:01:29 +01:00
11 lines
188 B
Nix
11 lines
188 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
nix = {
|
|
#package = pkgs.nixFlakes;
|
|
settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
};
|
|
};
|
|
system.stateVersion = "23.05";
|
|
}
|