diff --git a/hosts/lilith-pad/default.nix b/hosts/lilith-pad/default.nix index e5f28216..3b289317 100644 --- a/hosts/lilith-pad/default.nix +++ b/hosts/lilith-pad/default.nix @@ -8,7 +8,8 @@ in desktop.enable = true; home-manager.users."lilith".desktop.touchSupport = true; - gaming.enable = false; + gaming.enable = true; + gaming.client-only = true; nfs.client.enable = true; auto_styling.enable = true; diff --git a/system/core/android-dev.nix b/system/core/android-dev.nix new file mode 100644 index 00000000..6a2df1b4 --- /dev/null +++ b/system/core/android-dev.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: +{ + programs.adb.enable = true; + users.users."lilith".extraGroups = [ "adbusers" ]; + + environment.systemPackages = [ pkgs.android-studio ]; +} diff --git a/system/core/default.nix b/system/core/default.nix index 7daaac97..bbffdae8 100644 --- a/system/core/default.nix +++ b/system/core/default.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { imports = [ ./audio.nix @@ -19,4 +19,6 @@ ./virtualization.nix ]; + + environment.systemPackages = with pkgs; [ distrobox ]; } diff --git a/system/core/networking.nix b/system/core/networking.nix index 2eb83e61..806616f0 100644 --- a/system/core/networking.nix +++ b/system/core/networking.nix @@ -6,7 +6,10 @@ ethernet.macAddress = "random"; }; - networking.nameservers = [ "192.168.178.111" ]; + networking.nameservers = [ + "192.168.178.1" + "192.168.178.111" + ]; networking.nftables = { enable = true; diff --git a/system/core/packages.nix b/system/core/packages.nix index c0805ad6..b5b4f744 100644 --- a/system/core/packages.nix +++ b/system/core/packages.nix @@ -1,4 +1,5 @@ -{ pkgs, ...}: { +{ pkgs, ... }: +{ environment.systemPackages = with pkgs; [ age compsize diff --git a/unfree.nix b/unfree.nix index 6675cc39..371fd3da 100644 --- a/unfree.nix +++ b/unfree.nix @@ -2,5 +2,7 @@ allowed = [ "steam" "steam-unwrapped" + + "android-studio-stable" ]; }