mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
17 lines
322 B
Nix
17 lines
322 B
Nix
# This module defines a small NixOS configuration. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
environment.noXlibs = mkDefault true;
|
|
|
|
documentation.enable = mkDefault false;
|
|
|
|
documentation.nixos.enable = mkDefault false;
|
|
|
|
programs.command-not-found.enable = mkDefault false;
|
|
}
|