Compare commits

..
6 Commits
Author SHA1 Message Date
msyds 5dc4d57d7e fix(emacs): coerce makeWrapper args
build / build (push) Successful in 2m11s
2026-03-31 13:00:48 -06:00
msyds 17fb45606b chore(msyds): enable prism, flatpak on sydpc 2026-03-31 13:00:48 -06:00
msyds 1825424cbb feat: gtav battleye workaround 2026-03-31 13:00:48 -06:00
msyds af08b2f1b1 fix(emacs): use fcitx5-remote correctly 2026-03-31 13:00:48 -06:00
msyds 7bdbb985da fix(emacs): auctex tex-view-selection 2026-03-31 13:00:48 -06:00
msyds 5a87805660 fix(emacs): add syd/project require 2026-03-31 13:00:48 -06:00
7 changed files with 32 additions and 4 deletions
+1
View File
@@ -21,6 +21,7 @@
stylix.enable = true;
qemu.enable = true;
flatpak.enable = true;
gtav-battleye-hack.enable = true;
# gdm.enable = true;
openssh.enable = true;
sydpkgs.overlay.enable = true;
+6 -1
View File
@@ -56,7 +56,12 @@ in {
Extra arguments to pass to the final wrapProgram call.
'';
default = [];
type = lib.types.listOf lib.types.str;
type = with lib.types;
listOf
(coercedTo
(oneOf [str package])
builtins.toString
str);
apply = lib.escapeShellArgs;
};
};
@@ -2,7 +2,10 @@
(require 'syd/base)
(use-package auctex
(use-package auctex)
(use-package tex
:straight nil ; Part of auctex.
:config
(add-to-list 'TeX-view-program-selection '(output-pdf "Sioyek")))
@@ -3,8 +3,8 @@
(require 'syd/base)
(use-package fcitx
:custom ((fcitx-remote-command "fcitx5-remote"))
:config
(setq fcitx-remote-command "fcitx5-remote")
(fcitx-aggressive-setup))
(provide 'syd/fcitx)
@@ -1,6 +1,7 @@
;;; -*- lexical-binding: t; -*-
(require 'syd/base)
(require 'syd/keymaps)
(require 'syd/completion) ; For `consult'.
(require 'consult)
+17
View File
@@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
let cfg = config.sydnix.gtav-battleye-hack;
in {
options.sydnix.gtav-battleye-hack = {
enable = lib.mkEnableOption
"Grand Theft Auto V Online BattlEye workaround";
};
config = lib.mkIf cfg.enable {
networking.hosts."0.0.0.0" = [
"paradise-s1.battleye.com"
"test-s1.battleye.com"
"paradiseenhanced-s1.battleye.com"
];
};
}
+2 -1
View File
@@ -46,7 +46,8 @@
kdeconnect.enable = true;
qalculate.enable = true;
toki-pona.enable = true;
prism-launcher.enable = true;
prism-launcher.enable = on "sydpc";
flatpak.enable = on "sydpc";
sops = {
enable = true;
keyFile = "/persist/private-keys/age/crumb";