add (device config): add additional device settings
This commit is contained in:
parent
8c0f91301e
commit
658ded8bc1
2 changed files with 13 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1 +1 @@
|
||||||
|
hardware-configuration.nix
|
||||||
12
devices/thinkbook/default.nix
Normal file
12
devices/thinkbook/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
{ customFunctions, ... }:
|
||||||
|
{
|
||||||
|
imports = customFunctions.scan {
|
||||||
|
path = ./.;
|
||||||
|
exclude = [ ./default.nix ];
|
||||||
|
};
|
||||||
|
|
||||||
|
zramSwap = {
|
||||||
|
enable = false;
|
||||||
|
memoryPercent = 100;
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in a new issue