Reformat everything
All checks were successful
/ test (push) Successful in 32s

This commit is contained in:
Andrea Ciceri 2024-09-20 11:37:17 +02:00
parent 5f644d0ccd
commit a394b9cefd
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
167 changed files with 2795 additions and 2122 deletions

View file

@ -1,20 +1,20 @@
{
config,
lib,
pkgs,
...
}: {
}:
{
services.xserver = {
enable = true;
desktopManager.kodi = {
enable = true;
package = pkgs.kodi.withPackages (ps:
with ps; [
package = pkgs.kodi.withPackages (
ps: with ps; [
joystick
youtube
libretro
libretro-mgba
]);
]
);
};
displayManager.autoLogin = {
enable = true;
@ -28,8 +28,8 @@
};
networking.firewall = {
allowedTCPPorts = [8080];
allowedUDPPorts = [8080];
allowedTCPPorts = [ 8080 ];
allowedUDPPorts = [ 8080 ];
};
# environment.systemPackages = with pkgs; [xboxdrv cifs-utils];