diff options
Diffstat (limited to 'nixos/laptop/configuration.nix')
| -rw-r--r-- | nixos/laptop/configuration.nix | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/nixos/laptop/configuration.nix b/nixos/laptop/configuration.nix index ceed24e..983e966 100644 --- a/nixos/laptop/configuration.nix +++ b/nixos/laptop/configuration.nix @@ -25,16 +25,30 @@ displayManager.lightdm.enable = false; }; + environment.systemPackages = with pkgs; [ + joycond-cemuhook + ]; - # environment.systemPackages = with pkgs; [ - # qemu - # ]; + virtualisation.docker = { + enable = true; + liveRestore = true; + daemon.settings = { + bip = "172.20.0.1/16"; + default-address-pools = [{ + base = "172.20.0.0/8"; + size = 16; + }]; + }; + }; + # services.postgresql.enable = true; programs.adb.enable = true; services.udev.packages = [ pkgs.android-udev-rules ]; + services.joycond.enable = true; + home-manager = { extraSpecialArgs = { inherit inputs outputs; }; useGlobalPkgs = true; |
