mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
06e15e59f9
The `krb5` service was a bit lacking. Addresses NixOS/nixpkgs#11268, partially addresses NixOS/nixpkgs#29623.
6 lines
183 B
Nix
6 lines
183 B
Nix
{ system ? builtins.currentSystem }:
|
|
{
|
|
example-config = import ./example-config.nix { inherit system; };
|
|
deprecated-config = import ./deprecated-config.nix { inherit system; };
|
|
}
|