wow another typo

This commit is contained in:
Jade Lovelace 2024-02-13 14:43:13 -08:00
parent ad7288ed41
commit 9cdbf1eaf1

View file

@ -464,11 +464,11 @@ nixosConfigurations.something = nixpkgs.lib.nixosSystem {
specialArgs = {
myPkgs = nixpkgs;
};
modules = {
{ pkgs, lib, myPkgs }: {
modules = [
({ pkgs, lib, myPkgs }: {
# do something with myPkgs
}
};
})
];
}
```