about summary refs log tree commit diff
path: root/users/grfn/system/system/modules/development.nix
{ config, lib, pkgs, ... }:

{
  virtualisation.docker.enable = true;
  users.users.grfn.extraGroups = [ "docker" ];

  security.pam.loginLimits = [
    {
      domain = "grfn";
      type = "soft";
      item = "nofile";
      value = "65535";
    }
  ];
}