common: enable emulation of other architectures

main
Robert Gerus 2023-10-08 21:33:04 +00:00
parent fd8c8ed886
commit dd661b5a6c
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,8 @@
let secrets = import ../secrets.nix;
in {
boot.binfmt.emulatedSystems =
lib.lists.remove pkgs.system [ "x86_64-linux" "aarch64-linux" ];
programs.command-not-found.enable = false;
system.stateVersion = "23.11";
services.openssh = {

View File

@ -3,7 +3,6 @@
{
networking.hostName = "khas";
imports = [ ./hardware-configuration.nix ];
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
age.secrets.ar-password.file = ../../secrets/khas-ar.age;
users.users.ar.hashedPasswordFile = config.age.secrets.ar-password.path;