removed gnome
This commit is contained in:
parent
2e2e76c06c
commit
4bc941f04c
10 changed files with 41 additions and 53 deletions
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue