Files
nixos/hosts/yarn/home.nix
Simon Gardling 3865ceac0f
All checks were successful
Build and Deploy / mreow (push) Successful in 7m57s
Build and Deploy / yarn (push) Successful in 1m11s
Build and Deploy / muffin (push) Successful in 1m3s
fh5 things
2026-05-07 17:33:35 -04:00

29 lines
535 B
Nix

{
pkgs,
...
}:
{
imports = [
../../home/profiles/gui.nix
../../home/profiles/desktop.nix
../../home/progs/steam-shortcuts.nix
];
home.packages = with pkgs; [
protontricks
(pkgs.callPackage ../../home/util/fh5-car-table.nix { })
# 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
];
};
}