mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
nixos/glance: fix "invalid user 'glance'" error (#456164)
This commit is contained in:
commit
82e1380db8
1 changed files with 8 additions and 1 deletions
|
|
@ -172,7 +172,14 @@ in
|
|||
systemd.services.glance = {
|
||||
description = "Glance feed dashboard server";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network.target" ];
|
||||
# adding nss-user-lookup.target is a fix for https://github.com/NixOS/nixpkgs/issues/409348
|
||||
after = [
|
||||
"network.target"
|
||||
"nss-user-lookup.target"
|
||||
];
|
||||
requires = [
|
||||
"nss-user-lookup.target"
|
||||
];
|
||||
path = [ pkgs.replace-secret ];
|
||||
|
||||
serviceConfig = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue