2020-07-11 04:08:58 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.profiles.games;
|
|
|
|
gui = config.profiles.gui;
|
|
|
|
in {
|
|
|
|
|
|
|
|
options.profiles.games = {
|
|
|
|
enable = lib.mkEnableOption "Whether or not to install video game software";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
fortune
|
|
|
|
lolcat
|
|
|
|
neofetch
|
|
|
|
pipes
|
|
|
|
] ++ lib.optionals config.profiles.gui.enable [
|
|
|
|
steam
|
|
|
|
|
2022-12-01 21:14:53 +01:00
|
|
|
unstable.prismlauncher
|
2020-07-11 04:08:58 +02:00
|
|
|
# minetest
|
|
|
|
# dwarf-fortress-packages.dwarf-fortress-full
|
|
|
|
# superTuxKart
|
|
|
|
# warsow
|
2020-07-20 02:50:31 +02:00
|
|
|
# xonotic
|
2022-06-16 00:42:50 +02:00
|
|
|
# zeroad
|
2020-07-11 04:08:58 +02:00
|
|
|
|
2020-07-24 17:18:46 +02:00
|
|
|
# nur.repos.ivar.sm64ex
|
2020-07-11 04:08:58 +02:00
|
|
|
# dolphinEmuMaster
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|