mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
650492c5c8
This cuts ~100 MB from the system closure. Issue #7117.
11 lines
237 B
Nix
11 lines
237 B
Nix
# This module defines a small NixOS configuration. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
environment.noXlibs = mkDefault true;
|
|
i18n.supportedLocales = [ config.i18n.defaultLocale ];
|
|
}
|