14 lines
223 B
Nix
14 lines
223 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) {
|
|
config = { allowUnfree = true; };
|
|
};
|
|
in {
|
|
imports = [
|
|
./mcp.nix
|
|
];
|
|
}
|