diff options
author | stuebinm | 2024-02-21 22:45:17 +0100 |
---|---|---|
committer | stuebinm | 2024-02-21 22:45:17 +0100 |
commit | edca3fdd9d8c34f3969676c8ba757788d15f158d (patch) | |
tree | 01fbc92964d7d53627567f0aa6d6bac9be8357b0 /ilex | |
parent | 3d9f14fca4ac662cb7b6285bf9a05173ab51caff (diff) |
update inputs
Diffstat (limited to 'ilex')
-rw-r--r-- | ilex/configuration.nix | 48 |
1 files changed, 1 insertions, 47 deletions
diff --git a/ilex/configuration.nix b/ilex/configuration.nix index 70ca74d..2fa26cd 100644 --- a/ilex/configuration.nix +++ b/ilex/configuration.nix @@ -1,17 +1,10 @@ -# Edit this configuration file to define what should be installed on -# your system. Help is available in the configuration.nix(5) man page -# and in the NixOS manual (accessible by running ‘nixos-help’). - { config, pkgs, ... }: { imports = [ ./hardware-configuration.nix - # ../modules/glitchtip.nix - ../modules/crs-tools.nix ]; - networking.firewall.allowedTCPPorts = [ 5000 ]; boot.kernelPackages = @@ -62,48 +55,13 @@ host all all 127.0.0.1/32 trust host all all ::1/127 trust ''; - # package = pkgs.postgresql_11; - }; - - services.redis.servers."bookwyrm" = { - enable = true; - port = 6379; }; - # services.glitchtip = { - # enable = true; - # databaseUrl = "postgres://glitchtrip@localhost:5432/glitchtrip"; - # }; - # services.redis.servers.glitchtip = { + # services.redis.servers."bookwyrm" = { # enable = true; # port = 6379; # }; - # services.crs-tracker = { - # enable = true; - # nginxVirtualHostConfig = { - # listen = [{ - # addr = "127.0.0.1"; - # port = 8080; - # ssl = false; - # }]; - # }; - # }; - - - # for testing nomsring - # services.fcgiwrap.enable = true; - # services.nginx = { - # enable = true; - # virtualHosts.default = { - # locations."~ (.*)".extraConfig = '' - # fastcgi_pass unix:${config.services.fcgiwrap.socketAddress}; - # include ${pkgs.nginx}/conf/fastcgi_params; - # fastcgi_param SCRIPT_FILENAME /tmp/dingsda; - # fastcgi_param PATH_INFO $1; - # ''; - # }; - # }; services.tlp = { enable = true; settings = { @@ -123,8 +81,4 @@ USB_EXCLUDE_AUDIO = 1; }; }; - - - } - |