Enabled LanguageTool Server, allowUnfree = false
Some checks failed
/ Check Nix Flake (push) Has been cancelled

This commit is contained in:
kB01 2025-09-16 01:41:25 +02:00
parent 0a745bd063
commit 0cf24acb45
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
imports =
@ -12,7 +12,18 @@
experimental-features = [ "nix-command" "flakes" ];
trusted-users = [ "remotebuild" ];
};
nixpkgs.config.allowUnfree = true;
nixpkgs.config.allowUnfree = false;
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"ungoogled-chromium"
"ungoogled-chromium-unwrapped"
"widevine-cdm"
"nvidia-x11"
"nvidia-settings"
"veracrypt"
"castlabs-electron"
"steam"
"steam-unwrapped"
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
@ -99,6 +110,12 @@
programs.steam.remotePlay.openFirewall = true;
hardware.steam-hardware.enable = true;
# Languagetool Spellchecking Server
services.languagetool = {
enable = true;
allowOrigin = "*";
};
# SSH
programs.ssh.startAgent = true;
services.openssh = {