You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The README.md example suggests importing /modules/sxmo/sxmo.nix and /modules/sxmo/tinydm but both of these appear to me to be incorrect.
It looks like they should be /modules/sxmo and /modules/tinydm instead. (I'd put up an MR, but I am not confident that my assumptions are correct, so I'll let you do that.)
Additionally, it would be nice to have an example of using it from a flake. I think I have that working right on my system, but I haven't used it much yet. I did the following:
The README.md example suggests importing
/modules/sxmo/sxmo.nix
and/modules/sxmo/tinydm
but both of these appear to me to be incorrect.It looks like they should be
/modules/sxmo
and/modules/tinydm
instead. (I'd put up an MR, but I am not confident that my assumptions are correct, so I'll let you do that.)Additionally, it would be nice to have an example of using it from a flake. I think I have that working right on my system, but I haven't used it much yet. I did the following:
In my
flake.nix
I added:and then in my nixosSystem module imports I have: ```
imports = [
Other imports here...
(import "${inputs.sxmo-nix}/modules/sxmo")
(import "${inputs.sxmo-nix}/modules/tinydm")
];
The text was updated successfully, but these errors were encountered: