nix-config/modules/home-manager/programs/gdx-liftoff.nix

18 lines
342 B
Nix

{...}: {
flake.homeModules.home-manager-gdx-liftoff = {
lib,
pkgs,
config,
...
}: {
options.programs.gdx-liftoff = {
enable = lib.mkEnableOption "enable gdx-liftoff";
};
config = lib.mkIf config.programs.gdx-liftoff.enable {
home.packages = with pkgs; [
gdx-liftoff
];
};
};
}