12 lines
185 B
Nix
12 lines
185 B
Nix
{ customFunctions, ... }:
|
|
{
|
|
imports = customFunctions.scan {
|
|
path = ./.;
|
|
exclude = [ ./default.nix ];
|
|
};
|
|
|
|
zramSwap = {
|
|
enable = false;
|
|
memoryPercent = 100;
|
|
};
|
|
}
|