2023-08-08 10:19:01 +00:00
|
|
|
{ ... }:
|
2023-01-10 09:35:00 +00:00
|
|
|
|
|
|
|
{
|
2023-08-08 10:19:01 +00:00
|
|
|
systemd.user.slices.app-test = {
|
|
|
|
Unit = { Description = "Slice for a test app"; };
|
2023-01-10 09:35:00 +00:00
|
|
|
|
2023-08-08 10:19:01 +00:00
|
|
|
Slice = {
|
|
|
|
MemoryHigh = "30%";
|
|
|
|
MemoryMax = "40%";
|
2023-01-10 09:35:00 +00:00
|
|
|
};
|
2023-08-08 10:19:01 +00:00
|
|
|
};
|
2023-01-10 09:35:00 +00:00
|
|
|
|
2023-08-08 10:19:01 +00:00
|
|
|
nmt.script = ''
|
|
|
|
sliceFile=home-files/.config/systemd/user/app-test.slice
|
|
|
|
assertFileExists $sliceFile
|
|
|
|
assertFileContent $sliceFile ${
|
|
|
|
builtins.toFile "app-test-expected.conf" ''
|
|
|
|
[Slice]
|
|
|
|
MemoryHigh=30%
|
|
|
|
MemoryMax=40%
|
2023-01-10 09:35:00 +00:00
|
|
|
|
2023-08-08 10:19:01 +00:00
|
|
|
[Unit]
|
|
|
|
Description=Slice for a test app
|
|
|
|
''
|
|
|
|
}
|
|
|
|
'';
|
2023-01-10 09:35:00 +00:00
|
|
|
}
|