Skip to content

fillon/nix-genymotion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Genymotion on Nix

240503:

  • nixpkgs-unstable = 3.6.0, doesn't work out of the box - unable to start the virtual device

Delete files from previous installations

rm -rf ~/.config/Genymobile
rm -rf ~/.local/state/Genymobile

Run genymotion from command line

nix run github:fillon/nix-genymotion#default

Add to your flake.nix

# 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
        #...
    ];
};

Releases

No releases published

Packages

No packages published

Languages