This commit is contained in:
iFargle 2024-01-31 13:23:52 +09:00
parent d963bcdca0
commit a5c938aae5
2 changed files with 4 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ inputs, pkgs, ... }: {
{ inputs, pkgs, system, ... }: {
boot.kernel.sysctl = {
"fs.inotify.max_user_watches" = 10485760;
"fs.inotify.max_user_instances" = 1024;
@ -17,6 +17,7 @@
docker-compose
ctop
lazydocker
inputs.compose2nix.packages.${system}.default
];
# Add the docker telegraf listener

View file

@ -1,4 +1,4 @@
{ inputs, pkgs, ... }: {
{ inputs, pkgs, system, ... }: {
# Need to increase this because the number of
# containers I have drive the defaults over the max
boot.kernel.sysctl = {
@ -21,6 +21,6 @@
environment.systemPackages = with pkgs; [
podman-compose
podman-tui
inputs.compose2nix.packages.x86_64-linux.default
inputs.compose2nix.packages.${system}.default
];
}