- WIP: Installer configuration to be used for portable or new systems. - Add defaultApps (zen for links, codium for plain text). - Refactor Ollama (AI) to skip model selection, WIP "codewriter" model. - Password-manager: Switch to wayland package for rofi-rbw, increase lock timeout. - Add mangohud config that shows FPS, frame time, throttling status in a horizontal layout below OW's HUD. - Add nixGL config to use mesa and vulkan. - Refactor configuration.nix as a "hub" file that just imports other files. - amdgpu: Remove problematic amdvlk driver. Was causing misbehavior in Overwatch. - gaming: Add gamescope and gamemode.
19 lines
469 B
Nix
19 lines
469 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
goxlr-utility
|
|
];
|
|
systemd.user.services = {
|
|
goxlr-utility = {
|
|
Unit = {
|
|
Description = "Unofficial GoXLR App replacement for Linux, Windows and MacOS";
|
|
Documentation = [ "https://github.com/GoXLR-on-Linux/goxlr-utility" ];
|
|
};
|
|
Service = {
|
|
Restart = "always";
|
|
RestartSec = 30;
|
|
ExecStart = "${pkgs.goxlr-utility}/bin/goxlr-daemon";
|
|
};
|
|
};
|
|
};
|
|
}
|