This commit is contained in:
mjallen18
2025-10-22 19:10:44 -05:00
parent 6b6cf3eee1
commit ee486f52bb
15 changed files with 52 additions and 36 deletions

View File

@@ -42,7 +42,7 @@
desktop = {
hyprland = {
enable = true;
wallpaperSource = "nasa";
wallpaperSource = "bing";
};
gnome.enable = false;
};

View File

@@ -2,7 +2,7 @@
{
services = {
auto-cpufreq = {
enable = true;
enable = false;
settings = {
# settings for when connected to a power source
charger = {
@@ -17,7 +17,7 @@
# see conversion info: https://www.rapidtables.com/convert/frequency/mhz-to-hz.html
# to use this feature, uncomment the following line and set the value accordingly
scaling_min_freq = 912000;
scaling_max_freq = 2424000;
scaling_max_freq = 3500000;
# scaling_min_freq = 702000;
# scaling_max_freq = 1968000;
@@ -37,7 +37,7 @@
# see conversion info: https://www.rapidtables.com/convert/frequency/mhz-to-hz.html
# to use this feature, uncomment the following line and set the value accordingly
scaling_min_freq = 912000;
scaling_max_freq = 2004000;
scaling_max_freq = 2424000;
# turbo boost setting (always, auto, or never)
turbo = "auto";

View File

@@ -1,5 +1,6 @@
{
pkgs,
lib,
...
}:
let
@@ -12,6 +13,7 @@ in
variant = "4";
};
kernelPackages = kernelBundle.linuxPackages_rpi4;
supportedFilesystems = lib.mkForce [ ];
};
hardware.raspberry-pi.config = {

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
let
kernelBundle = pkgs.linuxAndFirmware.latest;
in
@@ -6,6 +6,7 @@ in
boot = {
loader.raspberry-pi.firmwarePackage = kernelBundle.raspberrypifw;
kernelPackages = kernelBundle.linuxPackages_rpi5;
supportedFilesystems = lib.mkForce [ ];
};
hardware.raspberry-pi.config = {

View File

@@ -99,4 +99,6 @@
"nofail"
];
};
programs.seahorse.enable = false;
}