EdenQwQ/nix/default.nix
2025-03-01 22:35:08 +08:00

17 lines
255 B
Nix

{ nixpkgs, ... }:
{
imports = [
./substituters.nix
./nh.nix
./nixpkgs.nix
];
nix = {
settings.experimental-features = [
"nix-command"
"flakes"
"pipe-operators"
];
nixPath = [ "nixpkgs=${nixpkgs}" ];
};
}