2020-04-24 23:36:52 +00:00
|
|
|
# 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;
|
2021-12-06 16:07:01 +00:00
|
|
|
|
|
|
|
programs.command-not-found.enable = mkDefault false;
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|