mirror of
https://github.com/0x1d/nix.git
synced 2025-12-14 05:56:51 +01:00
19 lines
266 B
Nix
19 lines
266 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
nix = {
|
|
package = pkgs.nixFlakes;
|
|
settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"electron-24.8.6"
|
|
];
|
|
|
|
}
|