- modules/desktop-jovian.nix: shared Jovian deck-mode config (unfree predicate, jovian.steam, sddm, gamescope override, imports desktop-steam-update.nix) - home/progs/steam-shortcuts.nix: declarative non-Steam shortcuts (Prism Launcher); add new entries here for all Jovian hosts - hosts/yarn/default.nix: reduced to host-specific config only - hosts/patiodeck/default.nix: same
28 lines
474 B
Nix
28 lines
474 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../../home/profiles/gui.nix
|
|
../../home/profiles/desktop.nix
|
|
../../home/progs/steam-shortcuts.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
protontricks
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/339370#issuecomment-2731336341
|
|
bs-manager
|
|
];
|
|
|
|
programs.obs-studio = {
|
|
enable = true;
|
|
plugins = with pkgs.obs-studio-plugins; [
|
|
wlrobs
|
|
obs-backgroundremoval
|
|
obs-pipewire-audio-capture
|
|
];
|
|
};
|
|
}
|