Compare commits

..

3 commits

Author SHA1 Message Date
Lilith
0f8de176b7
Merge branch 'main' of git.firelilith.org:lilith/nixos 2025-03-31 13:18:08 +02:00
Lilith
84359b6254
merge 2025-03-31 13:16:35 +02:00
Lilith
fe82c49eb5
android 2025-03-24 21:21:19 +01:00
6 changed files with 20 additions and 4 deletions

View file

@ -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;

View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
programs.adb.enable = true;
users.users."lilith".extraGroups = [ "adbusers" ];
environment.systemPackages = [ pkgs.android-studio ];
}

View file

@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
imports = [
./audio.nix
@ -19,4 +19,6 @@
./virtualization.nix
];
environment.systemPackages = with pkgs; [ distrobox ];
}

View file

@ -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;

View file

@ -1,4 +1,5 @@
{ pkgs, ...}: {
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
age
compsize

View file

@ -2,5 +2,7 @@
allowed = [
"steam"
"steam-unwrapped"
"android-studio-stable"
];
}