nixos/common/console.nix

11 lines
183 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-27 20:21:35 +00:00
environment.variables.EDITOR = "nvim";
2020-05-12 08:53:09 +00:00
}