Move all the individual stored impermanence folders to specific files
This commit is contained in:
parent
57201099fb
commit
dbd5ea69cd
19 changed files with 178 additions and 160 deletions
|
@ -1,14 +1,22 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; lib.mkIf config.home.gaming.enable [
|
||||
heroic
|
||||
prismlauncher
|
||||
steam
|
||||
steam-run-free
|
||||
];
|
||||
config = lib.mkIf config.home.gaming.enable {
|
||||
home.packages = with pkgs; [
|
||||
heroic
|
||||
prismlauncher
|
||||
steam
|
||||
steam-run-free
|
||||
];
|
||||
|
||||
nixpkgs.allowUnfreePackages = [
|
||||
"steam"
|
||||
"steam-unwrapped"
|
||||
];
|
||||
home.persistence."/persist${config.home.homeDirectory}".directories = [
|
||||
".config/heroic"
|
||||
".local/share/PrismLauncher"
|
||||
".local/share/Steam"
|
||||
];
|
||||
|
||||
nixpkgs.allowUnfreePackages = [
|
||||
"steam"
|
||||
"steam-unwrapped"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue