]> Git — Sourcephile - sourcephile-nix.git/blob - hosts/carotte/system.nix
nixos: remove fontconfig
[sourcephile-nix.git] / hosts / carotte / system.nix
1 { pkgs, lib, config, ... }:
2 {
3 system.stateVersion = "21.05";
4
5 #boot.initrd.kernelModules = [ "vc4" "bcm2835_dma" "i2c_bcm2835" ];
6
7 nix.nixPath = lib.mkForce [];
8 nix.gc.automatic = true;
9 nix.package = lib.mkForce pkgs.nixUnstable;
10
11 boot.enableContainers = false;
12 documentation.enable = false;
13 documentation.doc.enable = false;
14 documentation.info.enable = false;
15 documentation.nixos.enable = false;
16 programs.command-not-found.enable = false;
17 }