[WIP] New hosts
This commit is contained in:
parent
c40493fe2a
commit
6d8b757919
14 changed files with 632 additions and 63 deletions
|
@ -8,7 +8,10 @@
|
|||
comma,
|
||||
...
|
||||
}: let
|
||||
supportedSystems = {x86_64-linux = "x86_64-linux";};
|
||||
supportedSystems = {
|
||||
x86_64-linux = "x86_64-linux";
|
||||
aarch64-linux = "aarch64-linux";
|
||||
};
|
||||
|
||||
pkgsFor = lib.genAttrs (lib.attrValues supportedSystems) (system: nixpkgsUnstable.legacyPackages.${system});
|
||||
|
||||
|
@ -52,6 +55,15 @@
|
|||
system = supportedSystems.x86_64-linux;
|
||||
modules = [nixosHardware.nixosModules.lenovo-thinkpad-x1-7th-gen];
|
||||
};
|
||||
hs = mkConfiguration {
|
||||
name = "hs";
|
||||
system = supportedSystems.x86_64-linux;
|
||||
};
|
||||
pbp = mkConfiguration {
|
||||
name = "pbp";
|
||||
system = supportedSystems.aarch64-linux;
|
||||
modules = ["${nixosHardware}/pine64/pinebook-pro"];
|
||||
};
|
||||
};
|
||||
|
||||
mkVmApp = system: configuration: let
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue