mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
nixos/cadvisor: fixes
- run as non root user, because of docker - run docker by default
This commit is contained in:
parent
decf15fd57
commit
536694bcd4
@ -90,17 +90,9 @@ in {
|
|||||||
${optionalString cfg.storageDriverSecure "-storage_driver_secure"}
|
${optionalString cfg.storageDriverSecure "-storage_driver_secure"}
|
||||||
''}
|
''}
|
||||||
'';
|
'';
|
||||||
User = "cadvisor";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = mkDefault true;
|
||||||
|
|
||||||
users.extraUsers = singleton {
|
|
||||||
name = "cadvisor";
|
|
||||||
uid = config.ids.uids.cadvisor;
|
|
||||||
description = "Cadvisor user";
|
|
||||||
extraGroups = [ "docker" ];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user