mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 09:43:50 -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 {
|
||||
specialArgs = {inherit inputs;};
|
||||
system = "aarch64-linux";
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
system = "aarch64-linux";
|
||||
};
|
||||
modules = [
|
||||
./hosts/callisto
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue