mirror of
https://git.kb-one.de/kb01/aux-config.git
synced 2025-12-05 10:28:53 +00:00
Enabled LanguageTool Server, allowUnfree = false
Some checks failed
/ Check Nix Flake (push) Has been cancelled
Some checks failed
/ Check Nix Flake (push) Has been cancelled
This commit is contained in:
parent
0a745bd063
commit
0cf24acb45
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue