run nix fmt

This commit is contained in:
jopejoe1 2024-07-16 21:52:40 +02:00
parent 47f93f87a5
commit e24f78d5f5
4 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,5 @@
{ ... }: { ... }:
{ {
imports = [ imports = [ ./neovim ];
./neovim
];
} }

View file

@ -43,7 +43,6 @@
networking.nftables.enable = true; networking.nftables.enable = true;
networking.firewall = { networking.firewall = {
enable = true; enable = true;
allowedTCPPorts = [ 53 ]; allowedTCPPorts = [ 53 ];

View file

@ -19,7 +19,10 @@
"rtsx_pci_sdmmc" "rtsx_pci_sdmmc"
]; ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" "coretemp" ]; boot.kernelModules = [
"kvm-intel"
"coretemp"
];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" = {

View file

@ -83,7 +83,7 @@
enable = true; enable = true;
runInUwsgi = false; runInUwsgi = false;
settings = { settings = {
server.secret_key = "NotASecret"; server.secret_key = "NotASecret";
}; };
uwsgiConfig = { uwsgiConfig = {
socket = "/run/searx/searx.sock"; socket = "/run/searx/searx.sock";