nixos-config/system/common.nix

8 lines
171 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
imports = [ ./i18n.nix ./nix.nix ./networking.nix ./hardened.nix ];
environment.systemPackages = with pkgs; [ wget curl openssl neovim ];
}