mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
When `readOnly` is set to `true` the autostart entries are linked from a readonly directory in the nix store and `XDG_CONFIG_HOME/autostart` is a link to that directory, so that programs cannot install arbitrary autostart services.
40 lines
1,022 B
Nix
40 lines
1,022 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
xdg.autostart = {
|
|
enable = true;
|
|
entries = [
|
|
"${pkgs.test1}/share/applications/test1.desktop"
|
|
"${pkgs.test2}/share/applications/test2.desktop"
|
|
];
|
|
};
|
|
|
|
test.stubs = {
|
|
test1 = {
|
|
outPath = null;
|
|
buildScript = ''
|
|
mkdir -p $out/share/applications
|
|
echo test1 > $out/share/applications/test1.desktop
|
|
'';
|
|
};
|
|
test2 = {
|
|
outPath = null;
|
|
buildScript = ''
|
|
mkdir -p $out/share/applications
|
|
echo test2 > $out/share/applications/test2.desktop
|
|
'';
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertDirectoryExists home-files/.config/autostart
|
|
|
|
assertFileExists home-files/.config/autostart/test1.desktop
|
|
assertFileContent home-files/.config/autostart/test1.desktop \
|
|
${pkgs.test1}/share/applications/test1.desktop
|
|
|
|
assertFileExists home-files/.config/autostart/test2.desktop
|
|
assertFileContent home-files/.config/autostart/test2.desktop \
|
|
${pkgs.test2}/share/applications/test2.desktop
|
|
'';
|
|
}
|