aboutsummaryrefslogtreecommitdiff
path: root/nixos/laptop/configuration.nix
diff options
context:
space:
mode:
authorspl3g <spleefer6@yandex.ru>2024-03-08 16:26:58 +0300
committerspl3g <spleefer6@yandex.ru>2025-05-01 14:56:39 +0300
commit5f89becff7cf8f4fd83e069459f6b8b5d773b956 (patch)
treef8fb820bc76623aacafcaf73d067c7fa2c59b104 /nixos/laptop/configuration.nix
parentf3e74cc8ef6fb944cd6e203ca25ea2cea65b778c (diff)
thats a lot of deletions
Diffstat (limited to 'nixos/laptop/configuration.nix')
-rw-r--r--nixos/laptop/configuration.nix20
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;