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; desktop.enable = true;
home-manager.users."lilith".desktop.touchSupport = true; home-manager.users."lilith".desktop.touchSupport = true;
gaming.enable = false; gaming.enable = true;
gaming.client-only = true;
nfs.client.enable = true; nfs.client.enable = true;
auto_styling.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 = [ imports = [
./audio.nix ./audio.nix
@ -19,4 +19,6 @@
./virtualization.nix ./virtualization.nix
]; ];
environment.systemPackages = with pkgs; [ distrobox ];
} }

View file

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

View file

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

View file

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