upd and cache

This commit is contained in:
mjallen18
2025-12-26 11:45:05 -06:00
parent f7cb1cb217
commit c9f75a053c
22 changed files with 523 additions and 126 deletions

View File

@@ -1,14 +1,14 @@
{ pkgs, lib, ... }:
{ pkgs, lib, namespace, ... }:
let
kernelBundle = pkgs.linuxAndFirmware.latest;
# kernelBundle = pkgs.linuxAndFirmware.latest;
in
{
boot = {
loader.raspberry-pi = {
bootloader = "kernel";
firmwarePackage = kernelBundle.raspberrypifw;
firmwarePackage = pkgs.raspberrypifw;
};
kernelPackages = kernelBundle.linuxPackages_rpi5;
kernelPackages = pkgs.${namespace}.linux-rpi;
supportedFilesystems = lib.mkForce [ ];
};

View File

@@ -75,7 +75,7 @@ in
port = 9191;
};
ersatztv = {
enable = false;
enable = true;
port = 8409;
};
free-games-claimer = {

View File

@@ -77,17 +77,20 @@
# capabilities = "cap_net_admin+p";
# };
specialisation = {
"cosmic".configuration = {
${namespace} = {
desktop = {
cosmic.enable = lib.mkForce true;
hyprland = {
enable = lib.mkForce false;
};
gnome.enable = lib.mkForce false;
};
};
};
};
# specialisation = {
# "cosmic" = {
# enable = false;
# configuration = {
# ${namespace} = {
# desktop = {
# cosmic.enable = lib.mkForce true;
# hyprland = {
# enable = lib.mkForce false;
# };
# gnome.enable = lib.mkForce false;
# };
# };
# };
# };
# };
}