nixos/homeConfig/modules/fun/default.nix
2023-06-06 02:28:37 -04:00

16 lines
253 B
Nix

{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.modules.fun;
in
{ options.modules.fun = { enable = mkEnableOption "fun"; };
config = mkIf cfg.enable {
home.packages = with pkgs; [
spotify
discord
steam
];
};
}