viola: upstream

Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
This commit is contained in:
s0me1newithhand7s 2026-02-08 22:38:28 +03:00
parent a50ae76a23
commit e6c9d19b0f
61 changed files with 492 additions and 244 deletions

View file

@ -1,4 +1,4 @@
{lib, ...}: {
_: {
boot = {
initrd = {
availableKernelModules = [
@ -14,7 +14,6 @@
supportedFilesystems = {
vfat = true;
btrfs = true;
zfs = lib.mkForce true;
};
systemd = {

View file

@ -1,8 +1,4 @@
{
config,
lib,
...
}: {
{config, ...}: {
boot = {
kernel = {
sysctl = {
@ -16,7 +12,6 @@
};
};
kernelPackages = pkgs.linuxPackages_cachyos-server;
extraModulePackages = with config.boot.kernelPackages; [
rtl8821ce
yt6801
@ -35,6 +30,7 @@
"page_alloc.shuffle=1"
"page_poison=1"
"slab_nomerge"
"zswap.enabled=0"
"kernel.watchdog=0"
"oops=panic"
@ -73,7 +69,6 @@
supportedFilesystems = {
vfat = true;
btrfs = true;
zfs = lib.mkForce true;
};
consoleLogLevel = 0;

View file

@ -1,7 +1,7 @@
{...}: {
_: {
boot = {
lanzaboote = {
enable = false;
enable = true;
configurationLimit = 7;
pkiBundle = "/var/lib/sbctl";
settings = {

View file

@ -1,4 +1,4 @@
{...}: {
_: {
boot = {
loader = {
systemd-boot = {

View file

@ -1,4 +1,4 @@
{...}: {
_: {
boot = {
tmp = {
useTmpfs = true;

View file

@ -1,9 +0,0 @@
{...}: {
boot = {
zfs = {
package = pkgs.zfs_cachyos;
allowHibernation = false;
removeLinuxDRM = false;
};
};
}