fix: updates, ci, ntsync

This commit is contained in:
Kat Inskip 2025-08-19 12:41:12 -07:00
parent c51e9e35e4
commit 5c7dc38a13
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
9 changed files with 19 additions and 6 deletions

3
home/profiles/ci.nix Normal file
View file

@ -0,0 +1,3 @@
{pkgs, ...}: {
nix.package = pkgs.lix;
}

View file

@ -1,4 +1,4 @@
{pkgs, ...}: {
_: {
# TODO: add the same treatment as the other nix gc script
nix = {
gc = {
@ -6,7 +6,6 @@
frequency = "weekly";
persistent = true;
};
package = pkgs.lix;
};
# adds to nixpkgs.overlay, made irrelevant due to `home-manager.useGlobalPkgs`
#chaotic.nyx.overlay.enable = false;

View file

@ -1,3 +1,11 @@
_: {
programs.wine.ntsync.enable = true;
{pkgs, ...}: {
boot.kernelModules = ["ntsync"];
services.udev.packages = [
(pkgs.writeTextFile {
name = "ntsync-udev-rules";
text = ''KERNEL=="ntsync", MODE="0660", TAG+="uaccess"'';
destination = "/etc/udev/rules.d/70-ntsync.rules";
})
];
}

View file

@ -11,7 +11,7 @@ with pkgs; let
nativeBuildInputs = [
nf-build-system
nf-update
lix
pkgs.lix
fd # fd, better fine!
ripgrep # rg, better grep!
sops

View file

@ -2,6 +2,7 @@ _: let
hostConfig = {tree, ...}: {
imports = with tree.home.profiles; [
common
ci
];
};
in {

View file

@ -3,6 +3,7 @@ _: let
imports = with tree.home.profiles; [
common
graphical
ci
];
};
in {

View file

@ -3,6 +3,7 @@ _: let
imports = with tree.home.profiles; [
common
neovim
ci
];
};
in {

View file

@ -3,6 +3,7 @@ _: let
imports = with tree.home.profiles; [
common
shell
ci
];
};
in {

View file

@ -83,7 +83,6 @@
chaotic.nixosModules.default
nixpkgs-xr.nixosModules.nixpkgs-xr
spicetify-nix.nixosModules.spicetify
nix-gaming.nixosModules.ntsync
nix-gaming.nixosModules.pipewireLowLatency
nix-gaming.nixosModules.platformOptimizations
clipboard-sync.nixosModules.default