fs: create symlinks at multi-user target by default

This commit is contained in:
colin 2023-01-04 06:32:53 +00:00
parent c0da19951b
commit f89f756489

View File

@ -109,7 +109,8 @@ let
reverseDepends = mkOption {
type = types.listOf types.str;
description = "list of systemd units which should be made to depend on this unit (controls `wantedBy` and `before`)";
default = [];
# symlinks are assumed to be terminals, so create them on start by default
default = [ "multi-user.target" ];
};
};
};