mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 13:22:04 +00:00
26 lines
347 B
Nix
26 lines
347 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.nmasur.profiles.linux-gaming;
|
|
in
|
|
|
|
{
|
|
|
|
options.nmasur.profiles.linux-gaming.enable = lib.mkEnableOption "Linux gaming home";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
config.nmasur.programs.wine.enable = lib.mkDefault true;
|
|
|
|
home.packages = lib.mkDefault [
|
|
pkgs.heroic
|
|
];
|
|
|
|
};
|
|
}
|