mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
115e6e7299
reduces size by about 1M
20 lines
476 B
Nix
20 lines
476 B
Nix
# This module defines a small NixOS configuration. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
environment.noXlibs = mkDefault true;
|
|
|
|
# This isn't perfect, but let's expect the user specifies an UTF-8 defaultLocale
|
|
i18n.supportedLocales = [ (config.i18n.defaultLocale + "/UTF-8") ];
|
|
|
|
documentation.enable = mkDefault false;
|
|
|
|
documentation.nixos.enable = mkDefault false;
|
|
|
|
programs.command-not-found.enable = mkDefault false;
|
|
}
|