mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-26 18:34:56 +08:00
17 lines
255 B
Nix
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}" ];
|
|
};
|
|
}
|