Use custom nix package

This commit is contained in:
2022-02-06 00:19:29 +00:00
parent 2c9e5b28e7
commit fd0bbb2961
4 changed files with 80 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
{ lib, pkgs, inputs, config, options, ... }:
{ lib, pkgs, inputs, system, config, options, ... }:
let
inherit (lib) mkIf mkDefault mkAliasDefinitions;
inherit (lib.my) mkOpt;
@@ -34,6 +34,14 @@
};
};
nix = {
package = inputs.nix.defaultPackage.${system};
extraOptions =
''
experimental-features = nix-command flakes ca-derivations
'';
};
environment.systemPackages = with pkgs; [
vim
iperf3