blob: 9ee73e5c7f5070c0119a85042f08c77ea81bda50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Heavily based on https://gist.github.com/sorki/548de08f621b066c94f0c36a7a78cc41#file-configuration-nix-L9
{ config, lib, ... }:
{
imports = [
<nixpkgs/nixos/modules/installer/sd-card/sd-image-raspberrypi-installer.nix>
# ./wireless.nix # Just contains the PSK config of my wifi
];
# Keep it ready for `dd`ing it on the SD card
sdImage = {
compressImage = false;
};
nixpkgs = {
crossSystem = {
system = "armv6l-linux";
platform = lib.systems.platforms.raspberrypi;
};
overlays = [
(self: super: {
mailutils = null; # Does not cross-compile. Missing binary breaks sendmail functionality of smartd
})
];
};
# closure minification
environment.noXlibs = true;
services.xserver.enable = false;
services.xserver.desktopManager.xterm.enable = lib.mkForce false;
# this pulls too much graphical stuff
services.udisks2.enable = lib.mkForce false;
# this pulls spidermonkey and firefox
security.polkit.enable = false;
boot.supportedFilesystems = lib.mkForce { "vfat" = true; };
i18n.supportedLocales = lib.mkForce [ (config.i18n.defaultLocale + "/UTF-8") ];
documentation.enable = false;
documentation.man.enable = false;
documentation.nixos.enable = false;
nixpkgs.config.allowUnsupportedSystem = true;
## Combats the default setting of wpa_supplicant not starting on installation devices
## https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/profiles/installation-device.nix#L74
# systemd.services.wpa_supplicant.wantedBy = lib.mkOverride 49 [ "multi-user.target" ];
}
|