Compare commits

...

2 commits

Author SHA1 Message Date
5df9f13116
Use latest linux on quasar for controller support 2025-12-22 16:21:41 -08:00
83aae7f48e
Disable baloo 2025-12-21 15:44:45 -08:00
3 changed files with 4 additions and 4 deletions

View file

@ -109,10 +109,7 @@ in {
plasma = { plasma = {
enable = osConfig.services.desktopManager.plasma6.enable; enable = osConfig.services.desktopManager.plasma6.enable;
configFile = { configFile = {
baloofilerc = { baloofilerc."Basic Settings".Indexing-Enabled = false;
"Basic Settings".Indexing-Enabled = true;
General."only basic indexing" = true;
};
kded5rc.Module-browserintegrationreminder.autoload = false; kded5rc.Module-browserintegrationreminder.autoload = false;
kdeglobals.General = { kdeglobals.General = {
TerminalApplication = "kitty"; TerminalApplication = "kitty";

View file

@ -5,6 +5,7 @@
# Configure boot # Configure boot
boot = { boot = {
initrd.systemd.enable = true; initrd.systemd.enable = true;
kernelPackages = pkgs.linuxPackages_latest;
loader = { loader = {
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
grub = let grub = let

View file

@ -1,12 +1,14 @@
{ {
config, config,
lib, lib,
pkgs,
... ...
}: { }: {
boot = { boot = {
loader.grub.zfsSupport = true; loader.grub.zfsSupport = true;
zfs = { zfs = {
extraPools = ["zarchive"]; extraPools = ["zarchive"];
package = pkgs.zfs_unstable;
requestEncryptionCredentials = ["zactive/main"]; requestEncryptionCredentials = ["zactive/main"];
}; };
}; };