Anthony Rodriguez
b808281674
Started moving HM config to the new local modules system. Conditionally toggling based on profiles and modules.
17 lines
271 B
Nix
17 lines
271 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
osConfig,
|
|
...
|
|
}: {
|
|
config = lib.mkIf osConfig.local.profiles.gaming.enable {
|
|
home.packages = [
|
|
pkgs.mangohud
|
|
pkgs.bolt-launcher
|
|
pkgs.ankama-launcher
|
|
pkgs.lutris
|
|
pkgs.qbittorrent
|
|
pkgs.protonplus
|
|
];
|
|
};
|
|
}
|