nixos/common/console.nix

10 lines
142 B
Nix
Raw Normal View History

2020-05-12 08:53:09 +00:00
{ config, ... }:
{
imports = [
./pkgs/console-core.nix
];
nixpkgs.config.allowUnfree = true;
services.openssh.enable = true;
2020-05-12 08:53:09 +00:00
}