removed gnome

This commit is contained in:
twoneis 2024-07-21 17:09:23 +02:00
parent 2e2e76c06c
commit 4bc941f04c
10 changed files with 41 additions and 53 deletions

View file

@ -1,10 +1,22 @@
{ lib, config, pkgs, ... }: lib.mkIf config.withGames {
programs.steam.enable = true;
programs.gamemode.enable = true;
{ lib, config, pkgs, ... }: let
inherit (lib) mkIf mkMerge;
in mkIf config.withGames (mkMerge [
(mkIf config.withImpermanence {
users.${config.username}= {
directories = [
"Games"
".steam"
".local/share/PrismLauncher"
];
};
}) {
programs.steam.enable = true;
programs.gamemode.enable = true;
home-manager.users.${config.username} = {
home.packages = with pkgs; [
prismlauncher
];
};
}
home-manager.users.${config.username} = {
home.packages = with pkgs; [
prismlauncher
];
};
}
])