240503:
- nixpkgs-unstable = 3.6.0, doesn't work out of the box -
unable to start the virtual device
rm -rf ~/.config/Genymobile
rm -rf ~/.local/state/Genymobile
nix run github:fillon/nix-genymotion#default
# flake.nix
{
inputs = {
#...
nix-genymotion.url = "github:fillon/nix-genymotion";
nix-genymotion.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, ...}@inputs
#...
}
# modules/user-stephane/default.nix
{ pkgs, inputs, ... }:
...
users.users.stephane = {
packages = with pkgs; [
inputs.nix-genymotion.packages.x86_64-linux.default
#...
];
};