2023-05-13 00:08:12 +02:00
|
|
|
{ ... }:
|
2022-10-07 06:49:39 +02:00
|
|
|
|
|
|
|
{
|
2023-05-13 00:08:12 +02:00
|
|
|
systemd.user.slices.app-test = {
|
|
|
|
Unit = { Description = "Slice for a test app"; };
|
2022-10-07 06:49:39 +02:00
|
|
|
|
2023-05-13 00:08:12 +02:00
|
|
|
Slice = {
|
|
|
|
MemoryHigh = "30%";
|
|
|
|
MemoryMax = "40%";
|
2022-10-07 06:49:39 +02:00
|
|
|
};
|
2023-05-13 00:08:12 +02:00
|
|
|
};
|
2022-10-07 06:49:39 +02:00
|
|
|
|
2023-05-13 00:08:12 +02: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%
|
2022-10-07 06:49:39 +02:00
|
|
|
|
2023-05-13 00:08:12 +02:00
|
|
|
[Unit]
|
|
|
|
Description=Slice for a test app
|
|
|
|
''
|
|
|
|
}
|
|
|
|
'';
|
2022-10-07 06:49:39 +02:00
|
|
|
}
|