mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
27 lines
518 B
Nix
27 lines
518 B
Nix
{ ... }:
|
|
|
|
{
|
|
systemd.user.slices.app-test = {
|
|
Unit = { Description = "Slice for a test app"; };
|
|
|
|
Slice = {
|
|
MemoryHigh = "30%";
|
|
MemoryMax = "40%";
|
|
};
|
|
};
|
|
|
|
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%
|
|
|
|
[Unit]
|
|
Description=Slice for a test app
|
|
''
|
|
}
|
|
'';
|
|
}
|