nixos-config/system/common.nix

8 lines
187 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2023-04-11 17:00:07 +02:00
imports = [ ./zram.nix ./i18n.nix ./nix.nix ./networking.nix ./hardened.nix ];
environment.systemPackages = with pkgs; [ wget curl openssl rage neovim ];
}