make new layout actually work on galvatron and hopefully starscream

This commit is contained in:
mir 2024-03-07 11:34:30 -09:00
parent 063cb5d99c
commit 2f9aeae491

View File

@ -30,11 +30,9 @@
galvatron =
let
system = "aarch64-linux";
# specialArgs = { inherit nixpkgs-unstable; };
specialArgs = { inherit inputs; };
modules = [
./configuration.nix {
# nixpkgs.overlays = [ inputs.apple-silicon.overlays.apple-silicon-overlay ];
hardware.asahi = {
peripheralFirmwareDirectory = ./galvatron/firmware;
# useExperimentalGPUDriver = true;
@ -52,6 +50,7 @@
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.mir = import ./home.nix;
home-manager.extraSpecialArgs = specialArgs;
}
]; # end of modules
in
@ -72,7 +71,7 @@
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.mir = import ./home.nix;
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
home-manager.extraSpecialArgs = specialArgs;
}
]; # end of modules
in
@ -83,8 +82,8 @@
specialArgs = { inherit inputs; };
modules = [
./configuration.nix {
networking.hostName = "knockout";
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "knockout";
sound.enable = true;
}
./hardware/knockout-hw.nix
@ -94,7 +93,6 @@
home-manager.useUserPackages = true;
home-manager.users.mir = import ./home.nix;
home-manager.extraSpecialArgs = specialArgs;
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
}
]; # end of modules
in