MiniNix/common.nix

15 lines
No EOL
228 B
Nix

{ config, lib, pkgs, ... }:
{
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
};
environment.systemPackages = with pkgs; [
vim
git
];
services.openssh = {
enable = true;
};
}