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 = [
|
imports = [
|
||||||
./audio.nix
|
./audio.nix
|
||||||
./bluetooth.nix
|
./bluetooth.nix
|
||||||
|
|
@ -15,5 +16,7 @@
|
||||||
./syncthing.nix
|
./syncthing.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
|
|
||||||
|
./android-dev.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,10 @@
|
||||||
ethernet.macAddress = "random";
|
ethernet.macAddress = "random";
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.nameservers = [ "192.168.178.111" ];
|
networking.nameservers = [
|
||||||
|
"192.168.178.1"
|
||||||
|
"192.168.178.111"
|
||||||
|
];
|
||||||
|
|
||||||
networking.nftables = {
|
networking.nftables = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
{ pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
age
|
age
|
||||||
compsize
|
compsize
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue