Compare commits

...

2 Commits

Author SHA1 Message Date
coolneng a8af2a0e92
Blacklist bluetooth kernel module 2021-03-30 18:22:59 +02:00
coolneng f6f655af5c
Fix doom-purge timer 2021-03-30 18:22:41 +02:00
3 changed files with 2 additions and 4 deletions

View File

@ -8,6 +8,7 @@
[ "zfs.zfs_arc_max=1073741824 zfs.zfs_arc_meta_limit_percent=90" ]; [ "zfs.zfs_arc_max=1073741824 zfs.zfs_arc_meta_limit_percent=90" ];
kernelModules = [ "i915" "acpi_call" "kvm-intel" ]; kernelModules = [ "i915" "acpi_call" "kvm-intel" ];
extraModulePackages = with config.boot.kernelPackages; [ acpi_call ]; extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
blacklistedKernelModules = [ "btusb" ];
supportedFilesystems = [ "zfs" ]; supportedFilesystems = [ "zfs" ];
zfs.requestEncryptionCredentials = true; zfs.requestEncryptionCredentials = true;
}; };

View File

@ -38,7 +38,7 @@
description = "Monthly purge of Doom Emacs"; description = "Monthly purge of Doom Emacs";
wantedBy = [ "default.target" ]; wantedBy = [ "default.target" ];
timerConfig = { timerConfig = {
OnCalendar = "13 22:00:00"; OnCalendar = "13-*-* 22:00:00";
Unit = "doom-purge.service"; Unit = "doom-purge.service";
}; };
}; };

View File

@ -31,9 +31,6 @@
NATACPI_ENABLE = 1; NATACPI_ENABLE = 1;
TPACPI_ENABLE = 1; TPACPI_ENABLE = 1;
TPSMAPI_ENABLE = 1; TPSMAPI_ENABLE = 1;
# Disable bluetooth on startup
DEVICES_TO_DISABLE_ON_STARTUP = "bluetooth";
}; };
}; };