android
This commit is contained in:
parent
f639394679
commit
fe82c49eb5
4 changed files with 17 additions and 3 deletions
7
system/core/android-dev.nix
Normal file
7
system/core/android-dev.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.adb.enable = true;
|
||||
users.users."lilith".extraGroups = [ "adbusers" ];
|
||||
|
||||
environment.systemPackages = [ pkgs.android-studio ];
|
||||
}
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
{...}: {
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./audio.nix
|
||||
./bluetooth.nix
|
||||
|
|
@ -15,5 +16,7 @@
|
|||
./syncthing.nix
|
||||
./users.nix
|
||||
./zsh.nix
|
||||
|
||||
./android-dev.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;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{ pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
age
|
||||
compsize
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue