{ pkgs, config, ... }: let cfg = config.services.grafana; in { services.nginx.virtualHosts."git.emile.space" = { forceSSL = true; enableACME = true; locations = { "/" = { proxyPass = "http://127.0.0.1:3000"; }; }; }; services = { grafana = { enable = true; package = pkgs.grafana; #declarativePlugins = with pkgs.grafanaPlugins; [ # grafana-piechart-panel #]; dataDir = "/var/lib/grafana"; settings = { users = { # Viewers can access and use Explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes. viewers_can_edit = true; # Require email validation before sign up completes verify_email_enabled = false; # The duration in time a user invitation remains valid before expiring. This setting should be expressed as a duration. Examples: 6h (hours), 2d (days), 1w (week). The minimum supported duration is 15m (15 minutes). user_invite_max_lifetime_duration = "24h"; # Text used as placeholder text on login page for password input. password_hint = "password"; # Text used as placeholder text on login page for login/username input. login_hint = "email or username"; # Path to a custom home page. Users are only redirected to this if the default home dashboard is used. It should match a frontend route and contain a leading slash. home_page = ""; # This is a comma-separated list of usernames. Users specified here are hidden in the Grafana UI. They are still visible to Grafana administrators and to themselves. hidden_users = ""; # Editors can administrate dashboards, folders and teams they create. editors_can_admin = false; # Sets the default UI theme. system matches the user’s system theme. default_theme = "system"; # This setting configures the default UI language, which must be a supported IETF language tag, such as en-US. default_language = "en-US"; # The role new users will be assigned for the main organization (if the auto_assign_org setting is set to true). # one of "Viewer", "Editor", "Admin" auto_assign_org_role = "Viewer"; # Set this value to automatically add new users to the provided org. This requires auto_assign_org to be set to true. Please make sure that this organization already exists. auto_assign_org_id = 1; # Set to true to automatically add new users to the main organization (id 1). When set to false, new users automatically cause a new organization to be created for that new user. The organization will be created even if the allow_org_create setting is set to false. auto_assign_org = true; # Set to false to prohibit users from being able to sign up / create user accounts. The admin user can still create users. allow_sign_up = false; # Set to false to prohibit users from creating new organizations. allow_org_create = false; }; smtp = { # User used for authentication. user = "mail"; # StartTLS policy when connecting to server. # null or one of "OpportunisticStartTLS", "MandatoryStartTLS", "NoStartTLS" startTLS_policy = null; # Verify SSL for SMTP server. skip_verify = false; # Password used for authentication. Please note that the contents of this option will end up in a world-readable Nix store. Use the file provider pointing at a reasonably secured file in the local filesystem to work around that. Look at the documentation for details: https://grafana.com/docs/grafana/latest/setup-grafana/configure-grafana/#file-provider password = ""; # File path to a key file. key_file = "$__file{${config.age.secrets.grafana_smtp_password.path}}"; # Host to connect to. host = "localhost:25"; # Name to be used as client identity for EHLO in SMTP dialog. from_name = "Grafana"; # Address used when sending out emails from_address = "admin@grafana.localhost"; # Whether to enable SMTP enabled = true; # Name to be used as client identity for EHLO in SMTP dialog ehlo_identity = null; # File path to a cert file cert_file = null; }; server = { # Root path for static assets. #static_root_path = "${package}/share/grafana/public"; # Mode where the socket should be set when protocol=socket. Make sure that Grafana process is the file owner before you change this setting. socket_mode = "0660"; # GID where the socket should be set when protocol=socket. Make sure that the target group is in the group of Grafana process and that Grafana process is the file owner before you change this setting. It is recommended to set the gid as http server user gid. Not set when the value is -1. socket_gid = -1; # Path where the socket should be created when protocol=socket. Make sure that Grafana has appropriate permissions before you change this setting. socket = "/run/grafana/grafana.sock"; # Serve Grafana from subpath specified in the root_url setting. By default it is set to false for compatibility reasons. # # By enabling this setting and using a subpath in root_url above, e.g. root_url = "http://localhost:3000/grafana", Grafana is accessible on http://localhost:3000/grafana. If accessed without subpath, Grafana will redirect to an URL with the subpath. serve_from_sub_path = false; # Set to true for Grafana to log all HTTP requests (not just errors). These are logged as Info level events to the Grafana log. router_logging = false; # This is the full URL used to access Grafana from a web browser. This is important if you use Google or GitHub OAuth authentication (for the callback URL to be correct). # # This setting is also important if you have a reverse proxy in front of Grafana that exposes it through a subpath. In that case add the subpath to the end of this URL setting. root_url = "%(protocol)s://%(domain)s:%(http_port)s/"; # Sets the maximum time using a duration format (5s/5m/5ms) before timing out read of an incoming request and closing idle connections. 0 means there is no timeout for reading the request. read_timeout = 0; # Which protocol to listen. # one of "http", "https", "h2", "socket" protocol = "http"; # Listening port. http_port = "3000"; # Listening address. # This setting intentionally varies from upstream’s default to be a bit more secure by default. http_addr = "127.0.0.1"; # Redirect to correct domain if the host header does not match the domain. Prevents DNS rebinding attacks. enforce_domain = true; # Set this option to true to enable HTTP compression, this can improve transfer speed and bandwidth utilization. It is recommended that most users set it to true. By default it is set to false for compatibility reasons. enable_gzip = true; # The public facing domain name used to access grafana from a browser. # This setting is only used in the default value of the root_url setting. If you set the latter manually, this option does not have to be specified. domain = "grafana.emile.space"; # Path to the certificate key file (if protocol is set to https or h2). cert_key = null; # Path to the certificate file (if protocol is set to https or h2). cert_file = null; # Specify a full HTTP URL address to the root of your Grafana CDN assets. Grafana will add edition and version paths. # # For example, given a cdn url like https://cdn.myserver.com grafana will try to load a javascript file from http://cdn.myserver.com/grafana-oss/7.4.0/public/build/app..js. cdn_url = null; }; security = { # Set to false to disable the X-XSS-Protection header, which tells browsers to stop pages from loading when they detect reflected cross-site scripting (XSS) attacks. x_xss_protection = true; # Set to false to disable the X-Content-Type-Options response header. The X-Content-Type-Options response HTTP header is a marker used by the server to indicate that the MIME types advertised in the Content-Type headers should not be changed and be followed. x_content_type_options = true; # Set to true to enable HSTS includeSubDomains option. Only applied if strict_transport_security is enabled. strict_transport_security_subdomains = true; # Set to true to enable HSTS preloading option. Only applied if strict_transport_security is enabled. strict_transport_security_preload = true; # Sets how long a browser should cache HSTS in seconds. Only applied if strict_transport_security is enabled. strict_transport_security_max_age_seconds = 86400; # Set to true if you want to enable HTTP Strict-Transport-Security (HSTS) response header. Only use this when HTTPS is enabled in your configuration, or when there is another upstream system that ensures your application does HTTPS (like a frontend load balancer). HSTS tells browsers that the site should only be accessed using HTTPS. strict_transport_security = true; # Secret key used for signing. Please note that the contents of this option will end up in a world-readable Nix store. Use the file provider pointing at a reasonably secured file in the local filesystem to work around that. Look at the documentation for details: https://grafana.com/docs/grafana/latest/setup-grafana/configure-grafana/#file-provider secret_key = "$__file{${config.age.secrets.grafana_secret_key.path}}"; # Disable creation of admin user on first start of Grafana. disable_initial_admin_creation = false; # Set to true to disable the use of Gravatar for user profile images. disable_gravatar = false; # Set to true to disable brute force login protection. disable_brute_force_login_protection = false; # Define a whitelist of allowed IP addresses or domains, with ports, to be used in data source URLs with the Grafana data source proxy. Format: ip_or_domain:port separated by spaces. PostgreSQL, MySQL, and MSSQL data sources do not use the proxy and are therefore unaffected by this setting. data_source_proxy_whitelist = [ ]; # List of additional allowed URLs to pass by the CSRF check. Suggested when authentication comes from an IdP. csrf_trusted_origins = [ ]; # List of allowed headers to be set by the user. Suggested to use for if authentication lives behind reverse proxies. csrf_additional_headers = [ ]; # Set to true if you host Grafana behind HTTPS. cookie_secure = true; # Sets the SameSite cookie attribute and prevents the browser from sending this cookie along with cross-site requests. The main goal is to mitigate the risk of cross-origin information leakage. This setting also provides some protection against cross-site request forgery attacks (CSRF), read more about SameSite here. Using value disabled does not add any SameSite attribute to cookies. # one of "lax", "strict", "none", "disabled" cookie_samesite = "strict"; # Set to true to add the Content-Security-Policy-Report-Only header to your requests. CSP in Report Only mode enables you to experiment with policies by monitoring their effects without enforcing them. You can enable both policies simultaneously. content_security_policy_report_only = false; # Set to true to add the Content-Security-Policy header to your requests. CSP allows to control resources that the user agent can load and helps prevent XSS attacks. content_security_policy = true; # When false, the HTTP header X-Frame-Options: deny will be set in Grafana HTTP responses which will instruct browsers to not allow rendering Grafana in a ,