This commit is contained in:
Miguel Palhas
2025-06-30 19:20:54 +01:00
parent 3257d435d1
commit 9100ab46ac
4 changed files with 7 additions and 5 deletions
+1
View File
@@ -16,6 +16,7 @@
../common/programs/hyprland ../common/programs/hyprland
../common/programs/ghostty.nix ../common/programs/ghostty.nix
../common/programs/syncthing.nix ../common/programs/syncthing.nix
../common/programs/unity.nix
../common/programs/gpg.nix ../common/programs/gpg.nix
../common/features/xdg.nix ../common/features/xdg.nix
../common/features/bluetooth.nix ../common/features/bluetooth.nix
+1
View File
@@ -18,6 +18,7 @@
../common/features/nix-ld.nix ../common/features/nix-ld.nix
../common/features/bluetooth.nix ../common/features/bluetooth.nix
../common/features/ledger.nix ../common/features/ledger.nix
../common/features/android-studio.nix
]; ];
networking.hostName = "arrakis"; networking.hostName = "arrakis";
+4 -4
View File
@@ -5,13 +5,13 @@
"adbusers" "adbusers"
]; ];
programs.adb.enable = true; # programs.adb.enable = true;
services.udev.packages = with pkgs; [ services.udev.packages = with pkgs; [
android-udev-rules android-udev-rules
]; ];
environment.systemPackages = with pkgs; [ # environment.systemPackages = with pkgs; [
android-studio # android-studio
]; # ];
} }
+1 -1
View File
@@ -4,9 +4,9 @@
enable = true; enable = true;
displayManager = { displayManager = {
startx.enable = true; startx.enable = true;
gdm.enable = true;
}; };
autoRepeatDelay = 250; autoRepeatDelay = 250;
autoRepeatInterval = 30; autoRepeatInterval = 30;
}; };
services.displayManager.gdm.enable = true;
} }