Restrict Lix to x86 machines
This commit is contained in:
parent
75f0cb6112
commit
32b7a34b6f
|
@ -65,7 +65,9 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
lixModules.${config.nixpkgs}.nixosModules.default
|
(
|
||||||
|
if (config.system == "x86_64-linux") then lixModules.${config.nixpkgs}.nixosModules.default else { }
|
||||||
|
)
|
||||||
./configurations/${name}
|
./configurations/${name}
|
||||||
(if config.enableHomeManager then home-manager.nixosModules.home-manager else { })
|
(if config.enableHomeManager then home-manager.nixosModules.home-manager else { })
|
||||||
(if (config.system == "x86_64-linux") then lanzaboote.nixosModules.lanzaboote else { })
|
(if (config.system == "x86_64-linux") then lanzaboote.nixosModules.lanzaboote else { })
|
||||||
|
|
Loading…
Reference in a new issue