mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
fix: updates, ci, ntsync
This commit is contained in:
parent
c51e9e35e4
commit
5c7dc38a13
9 changed files with 19 additions and 6 deletions
3
home/profiles/ci.nix
Normal file
3
home/profiles/ci.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
nix.package = pkgs.lix;
|
||||||
|
}
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, ...}: {
|
_: {
|
||||||
# TODO: add the same treatment as the other nix gc script
|
# TODO: add the same treatment as the other nix gc script
|
||||||
nix = {
|
nix = {
|
||||||
gc = {
|
gc = {
|
||||||
|
|
@ -6,7 +6,6 @@
|
||||||
frequency = "weekly";
|
frequency = "weekly";
|
||||||
persistent = true;
|
persistent = true;
|
||||||
};
|
};
|
||||||
package = pkgs.lix;
|
|
||||||
};
|
};
|
||||||
# adds to nixpkgs.overlay, made irrelevant due to `home-manager.useGlobalPkgs`
|
# adds to nixpkgs.overlay, made irrelevant due to `home-manager.useGlobalPkgs`
|
||||||
#chaotic.nyx.overlay.enable = false;
|
#chaotic.nyx.overlay.enable = false;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,11 @@
|
||||||
_: {
|
{pkgs, ...}: {
|
||||||
programs.wine.ntsync.enable = true;
|
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";
|
||||||
|
})
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ with pkgs; let
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
nf-build-system
|
nf-build-system
|
||||||
nf-update
|
nf-update
|
||||||
lix
|
pkgs.lix
|
||||||
fd # fd, better fine!
|
fd # fd, better fine!
|
||||||
ripgrep # rg, better grep!
|
ripgrep # rg, better grep!
|
||||||
sops
|
sops
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ _: let
|
||||||
hostConfig = {tree, ...}: {
|
hostConfig = {tree, ...}: {
|
||||||
imports = with tree.home.profiles; [
|
imports = with tree.home.profiles; [
|
||||||
common
|
common
|
||||||
|
ci
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ _: let
|
||||||
imports = with tree.home.profiles; [
|
imports = with tree.home.profiles; [
|
||||||
common
|
common
|
||||||
graphical
|
graphical
|
||||||
|
ci
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ _: let
|
||||||
imports = with tree.home.profiles; [
|
imports = with tree.home.profiles; [
|
||||||
common
|
common
|
||||||
neovim
|
neovim
|
||||||
|
ci
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ _: let
|
||||||
imports = with tree.home.profiles; [
|
imports = with tree.home.profiles; [
|
||||||
common
|
common
|
||||||
shell
|
shell
|
||||||
|
ci
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
|
||||||
1
tree.nix
1
tree.nix
|
|
@ -83,7 +83,6 @@
|
||||||
chaotic.nixosModules.default
|
chaotic.nixosModules.default
|
||||||
nixpkgs-xr.nixosModules.nixpkgs-xr
|
nixpkgs-xr.nixosModules.nixpkgs-xr
|
||||||
spicetify-nix.nixosModules.spicetify
|
spicetify-nix.nixosModules.spicetify
|
||||||
nix-gaming.nixosModules.ntsync
|
|
||||||
nix-gaming.nixosModules.pipewireLowLatency
|
nix-gaming.nixosModules.pipewireLowLatency
|
||||||
nix-gaming.nixosModules.platformOptimizations
|
nix-gaming.nixosModules.platformOptimizations
|
||||||
clipboard-sync.nixosModules.default
|
clipboard-sync.nixosModules.default
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue