System/modules/linux/programs/utils.nix

12 lines
318 B
Nix
Raw Normal View History

2022-06-23 02:57:41 -04:00
{ config, lib, pkgs, ... }:
let nathan = config.nathan;
in with lib; {
imports = [ ../../common/programs/utils.nix ];
2022-07-02 02:44:43 -04:00
config = mkMerge [
2022-09-04 03:42:31 -04:00
(mkIf nathan.programs.utils.binfmt {
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
})
2023-01-01 18:38:21 -05:00
{ environment.systemPackages = with pkgs; [ gmp gmp.dev ]; }
2022-07-02 02:44:43 -04:00
];
2022-06-23 02:57:41 -04:00
}