feat(system): disable orca, enable envfs

envfs enables compatibility on NixOS for scripts which assume the prensence
of some files, such as /bin/bash, which are usually present on other *Nix
systems.
This commit is contained in:
2025-11-16 15:29:21 +01:00
parent 299d08a16a
commit 5952720feb

View File

@@ -36,5 +36,9 @@ in {
boot.tmp.cleanOnBoot = true;
time.timeZone = cfg.timezone;
console.keyMap = cfg.keymap;
services = {
orca.enable = false;
envfs.enable = true;
};
};
}