mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
fix: correctly pass system to callisto
This commit is contained in:
parent
577753d3cb
commit
4f820729c3
1 changed files with 4 additions and 2 deletions
|
@ -88,8 +88,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
callisto = nixpkgs.lib.nixosSystem {
|
callisto = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs;};
|
specialArgs = {
|
||||||
|
inherit inputs;
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/callisto
|
./hosts/callisto
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue