enabling aarch64-linux on all hosts...

This commit is contained in:
Don Harper 2025-10-19 20:01:32 -05:00
parent b99925ff12
commit 2ee9db3ce6
3 changed files with 57 additions and 37 deletions

View file

@ -1,4 +1,11 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
inputs.nixos-hardware.nixosModules.framework-amd-ai-300-series
./hardware-configuration.nix
@ -6,7 +13,6 @@
../workstation
];
networking.hostName = "loki";
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
variables.address = "100.72.0.1";
variables.swayScale = "1.2";
@ -20,5 +26,5 @@
gnome-calendar.enable = true;
};
primary.enable = true;
wm = { sway.enable = true; };
wm = {sway.enable = true;};
}