mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-23 00:29:01 -05:00
20 lines
297 B
Nix
20 lines
297 B
Nix
|
{
|
||
|
config,
|
||
|
stable,
|
||
|
inputs,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
nix = {
|
||
|
settings = {
|
||
|
extra-platforms = config.boot.binfmt.emulatedSystems;
|
||
|
experimental-features = [
|
||
|
"nix-command"
|
||
|
"flakes"
|
||
|
];
|
||
|
};
|
||
|
package = stable.nix;
|
||
|
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
||
|
};
|
||
|
}
|