aarpc, amdgpu steamvr fix, deadbeef, 😭

This commit is contained in:
k3t
2026-07-10 23:44:41 -06:00
parent 7c0ab9e7a4
commit 6514158245
8 changed files with 147 additions and 13 deletions
+5
View File
@@ -0,0 +1,5 @@
{
services.arrpc = {
enable = true;
};
}
+4 -1
View File
@@ -7,5 +7,8 @@
email = "k3t@k3t.dev";
};
};
lfs = {
enable = true;
};
};
}
}
+2 -2
View File
@@ -1,6 +1,6 @@
{ config, pkgs, ... }: {
gtk = {
enable = true;
enable = false;
colorScheme = "dark";
cursorTheme = {
name = "WhiteSur-cursors";
@@ -20,4 +20,4 @@
theme = config.gtk.theme;
};
};
}
}
+18 -1
View File
@@ -1,9 +1,26 @@
{pkgs, ...}:
{
imports = [
./common.nix
./cfg/arrpc.nix
./cfg/keepassxc.nix
./cfg/kitty.nix
./cfg/gtk.nix
#./cfg/gtk.nix
# excluded since there are issues with kde
./cfg/qbz.nix
];
home.packages = with pkgs; [
(deadbeef-with-plugins.override {
plugins = [
deadbeefPlugins.mpris2
deadbeefPlugins.lyricbar
deadbeefPlugins.statusnotifier
deadbeefPlugins.waveform-seekbar
deadbeefPlugins.vgmstream
deadbeefPlugins.headerbar-gtk3
];
})
];
}