Opt-in `nomarchy.system.gaming.enable` (default false). Wires
`programs.steam` (with `remotePlay` and `localNetworkGameTransfers`
firewall holes opened via `mkDefault`), `programs.gamemode` (the
launching user must be in the `gamemode` group), and
`services.flatpak`.
Two pieces of the original roadmap entry split into separate
Next-column rows so the system-side preset ships now:
1. Hyprland fullscreen-on-Steam-launch window rule (home-side).
2. Declarative flathub remote (nixpkgs has no API for this; needs
either an overlay or a one-shot systemd unit).
The flatpak service is enabled but the user must add flathub
manually after first boot — documented in OPTIONS.md.
38 lines
740 B
Nix
38 lines
740 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./options.nix
|
|
./state.nix
|
|
./branding.nix
|
|
./graphics.nix
|
|
./nix.nix
|
|
./scripts.nix
|
|
./systemd.nix
|
|
./virtualization.nix
|
|
./fonts.nix
|
|
./hardware.nix
|
|
./audio.nix
|
|
./bluetooth.nix
|
|
./network.nix
|
|
./impermanence.nix
|
|
./browser.nix
|
|
# Tier 1 system features (all opt-in via nomarchy.system.*).
|
|
./snapper.nix
|
|
./laptop.nix
|
|
./desktop.nix
|
|
./accessibility.nix
|
|
./gaming.nix
|
|
./hibernate.nix
|
|
./containers.nix
|
|
./pam.nix
|
|
./input-method.nix
|
|
../../themes/engine/plymouth.nix
|
|
../../themes/engine/sddm.nix
|
|
];
|
|
|
|
time.timeZone = lib.mkDefault config.nomarchy.system.timezone;
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|