nixos 26.05

This commit is contained in:
müde 2026-05-27 19:21:09 +02:00
parent 246ce7eeb1
commit 2397049d74
10 changed files with 102 additions and 156 deletions

View file

@ -1,4 +1,4 @@
{ self, ... }:
{ self, pkgs, ... }:
{
imports = [
./containers.nix
@ -38,16 +38,9 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO1CRn4yYTL4XUdCebE8Z4ZeuMujBjorTdWifg911EOv pc2 home roaming"
];
programs = {
adb.enable = true;
light = {
enable = true;
brightnessKeys = {
enable = true;
step = 5;
};
};
};
# `programs.adb` removed in nixpkgs 26.05 (systemd 258 handles uaccess); add pkgs.android-tools to systemPackages if adb is needed
# `programs.light` removed in nixpkgs 26.05; replace with brightnessctl or hardware.acpilight when re-enabling
environment.systemPackages = [ pkgs.android-tools ];
networking.firewall.allowedTCPPorts = [
8776