re-organize/indent flake.nix to pass inputs to home manager
This commit is contained in:
parent
3499eae4d2
commit
0c79b56d45
134
flake.nix
134
flake.nix
@ -27,68 +27,78 @@
|
|||||||
home-manager,
|
home-manager,
|
||||||
... }: {
|
... }: {
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
galvatron = nixpkgs.lib.nixosSystem {
|
galvatron =
|
||||||
system = "aarch64-linux";
|
let
|
||||||
# specialArgs = { inherit nixpkgs-unstable; };
|
system = "aarch64-linux";
|
||||||
modules = [
|
# specialArgs = { inherit nixpkgs-unstable; };
|
||||||
./configuration.nix {
|
specialArgs = { inherit inputs; };
|
||||||
# nixpkgs.overlays = [ inputs.apple-silicon.overlays.apple-silicon-overlay ];
|
modules = [
|
||||||
hardware.asahi = {
|
./configuration.nix {
|
||||||
peripheralFirmwareDirectory = ./galvatron/firmware;
|
# nixpkgs.overlays = [ inputs.apple-silicon.overlays.apple-silicon-overlay ];
|
||||||
# useExperimentalGPUDriver = true;
|
hardware.asahi = {
|
||||||
# experimentalGPUInstallMode = "driver";
|
peripheralFirmwareDirectory = ./galvatron/firmware;
|
||||||
# experimentalGPUInstallMode = "overlay";
|
# useExperimentalGPUDriver = true;
|
||||||
};
|
# experimentalGPUInstallMode = "driver";
|
||||||
boot.loader.efi.canTouchEfiVariables = false;
|
# experimentalGPUInstallMode = "overlay";
|
||||||
networking.hostName = "galvatron";
|
};
|
||||||
sound.enable = false;
|
boot.loader.efi.canTouchEfiVariables = false;
|
||||||
}
|
networking.hostName = "galvatron";
|
||||||
./galvatron/hardware-configuration.nix
|
sound.enable = false;
|
||||||
inputs.apple-silicon.nixosModules.apple-silicon-support
|
}
|
||||||
home-manager.nixosModules.home-manager
|
./galvatron/hardware-configuration.nix
|
||||||
{
|
inputs.apple-silicon.nixosModules.apple-silicon-support
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.nixosModules.home-manager
|
||||||
home-manager.useUserPackages = true;
|
{
|
||||||
home-manager.users.mir = import ./home.nix;
|
home-manager.useGlobalPkgs = true;
|
||||||
}
|
home-manager.useUserPackages = true;
|
||||||
];
|
home-manager.users.mir = import ./home.nix;
|
||||||
};
|
}
|
||||||
starscream = nixpkgs.lib.nixosSystem {
|
]; # end of modules
|
||||||
system = "x86_64-linux";
|
in
|
||||||
modules = [
|
nixpkgs.lib.nixosSystem {inherit system modules specialArgs; };
|
||||||
./configuration.nix {
|
starscream =
|
||||||
networking.hostName = "starscream";
|
let
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
system = "x86_64-linux";
|
||||||
sound.enable = true;
|
specialArgs = { inherit inputs; };
|
||||||
}
|
modules = [
|
||||||
./hardware/starscream-hw.nix
|
./configuration.nix {
|
||||||
home-manager.nixosModules.home-manager
|
networking.hostName = "starscream";
|
||||||
{
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
home-manager.useGlobalPkgs = true;
|
sound.enable = true;
|
||||||
home-manager.useUserPackages = true;
|
}
|
||||||
home-manager.users.mir = import ./home.nix;
|
./hardware/starscream-hw.nix
|
||||||
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
|
home-manager.nixosModules.home-manager
|
||||||
}
|
{
|
||||||
];
|
home-manager.useGlobalPkgs = true;
|
||||||
};
|
home-manager.useUserPackages = true;
|
||||||
knockout = nixpkgs.lib.nixosSystem {
|
home-manager.users.mir = import ./home.nix;
|
||||||
system = "x86_64-linux";
|
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
|
||||||
modules = [
|
}
|
||||||
./configuration.nix {
|
]; # end of modules
|
||||||
networking.hostName = "knockout";
|
in
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
nixpkgs.lib.nixosSystem {inherit system modules specialArgs; };
|
||||||
sound.enable = true;
|
knockout =
|
||||||
}
|
let
|
||||||
./hardware/knockout-hw.nix
|
system = "x86_64-linux";
|
||||||
home-manager.nixosModules.home-manager
|
specialArgs = { inherit inputs; };
|
||||||
{
|
modules = [
|
||||||
home-manager.useGlobalPkgs = true;
|
./configuration.nix {
|
||||||
home-manager.useUserPackages = true;
|
networking.hostName = "knockout";
|
||||||
home-manager.users.mir = import ./home.nix;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
|
sound.enable = true;
|
||||||
}
|
}
|
||||||
];
|
./hardware/knockout-hw.nix
|
||||||
};
|
home-manager.nixosModules.home-manager
|
||||||
|
{
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
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
|
||||||
|
nixpkgs.lib.nixosSystem {inherit system modules specialArgs; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user