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 = {
enable = osConfig.services.desktopManager.plasma6.enable;
configFile = {
baloofilerc = {
"Basic Settings".Indexing-Enabled = true;
General."only basic indexing" = true;
};
baloofilerc."Basic Settings".Indexing-Enabled = false;
kded5rc.Module-browserintegrationreminder.autoload = false;
kdeglobals.General = {
TerminalApplication = "kitty";

View file

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

View file

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