nixos-config/system/server/default.nix

36 lines
787 B
Nix
Raw Normal View History

2019-12-20 05:54:26 +01:00
{ config, lib, pkgs, ... }: {
2019-10-24 02:20:38 +02:00
imports = [
<system/all>
./netdata.nix
./initssh.nix
./graylog-exporter.nix
./prometheus-exporters.nix
];
# make sure laptops stay awake when closing the montior
services.logind.lidSwitch = "ignore";
powerManagement.enable = false;
powerManagement.cpuFreqGovernor = "ondemand";
powerManagement.scsiLinkPolicy = "min_power";
# config vim
programs.custom.vim.enable = true;
# no need to to start a service
2021-03-28 09:40:54 +02:00
environment.systemPackages = let
nginxShowConfig = pkgs.writers.writePython3Bin "nginx-show-config" {
flakeIgnore = [ "E265" "E225" "W292" ];
} (lib.fileContents <assets/nginx-show-config.sh>);
in [
pkgs.mosh
# nginxfmt
pkgs.nginx-config-formatter
nginxShowConfig
];
2019-10-24 02:20:38 +02:00
}