generated from john/nix-docker
19 lines
271 B
Nix
19 lines
271 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
inputs,
|
|
outputs,
|
|
...
|
|
}: {
|
|
imports =
|
|
[
|
|
./services/loki.nix
|
|
];
|
|
|
|
config = {
|
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
|
programs.nix-ld.enable = true;
|
|
nixpkgs.config.allowUnfree = true;
|
|
};
|
|
} |