remove xterm and add heroic games

This commit is contained in:
twoneis 2024-08-05 19:56:37 +02:00
parent cf524b8344
commit 968bc8026d
2 changed files with 3 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ config, ... }: let { config, pkgs, ... }: let
inherit (config) conf; inherit (config) conf;
in { in {
imports = [ imports = [
@ -28,6 +28,7 @@ in {
xserver = { xserver = {
enable = true; enable = true;
displayManager.gdm.enable = true; displayManager.gdm.enable = true;
excludePackages = [ pkgs.xterm ];
}; };
}; };

View file

@ -30,6 +30,7 @@ in mkIf conf.games.enable (mkMerge [
home-manager.users.${conf.username} = { home-manager.users.${conf.username} = {
home.packages = [ home.packages = [
pkgs.prismlauncher pkgs.prismlauncher
pkgs.heroic
holo holo
]; ];
}; };