-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More minimal builds for the embedded stuff
- Loading branch information
Showing
12 changed files
with
283 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# This module defines a small NixOS configuration. It does not | ||
# contain any graphical stuff. | ||
|
||
{ config, lib, ... }: | ||
|
||
with lib; | ||
|
||
{ | ||
|
||
documentation.enable = mkDefault false; | ||
|
||
documentation.doc.enable = mkDefault false; | ||
|
||
documentation.info.enable = mkDefault false; | ||
|
||
documentation.man.enable = mkDefault false; | ||
|
||
documentation.nixos.enable = mkDefault false; | ||
|
||
# Perl is a default package. | ||
environment.defaultPackages = mkDefault [ ]; | ||
|
||
environment.stub-ld.enable = false; | ||
|
||
# The lessopen package pulls in Perl. | ||
programs.less.lessopen = mkDefault null; | ||
|
||
# This pulls in nixos-containers which depends on Perl. | ||
boot.enableContainers = mkDefault false; | ||
|
||
programs.command-not-found.enable = mkDefault false; | ||
|
||
services.logrotate.enable = mkDefault false; | ||
|
||
services.udisks2.enable = mkDefault false; | ||
|
||
xdg.autostart.enable = mkDefault false; | ||
xdg.icons.enable = mkDefault false; | ||
xdg.mime.enable = mkDefault false; | ||
xdg.sounds.enable = mkDefault false; | ||
} |
Oops, something went wrong.