Skip to content

Commit

Permalink
feat(taiyi/home): add prismlauncher
Browse files Browse the repository at this point in the history
  • Loading branch information
nevivurn committed Jul 29, 2024
1 parent 4be4337 commit 225a102
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion systems/taiyi/home/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,10 @@
];
};

home.packages = [ pkgs.picocom ];
home.packages = with pkgs; [
picocom
prismlauncher
];

home.persistence."/persist${config.home.homeDirectory}" = {
directories = [
Expand All @@ -167,4 +170,12 @@
}
];
};
home.persistence."/persist/cache${config.home.homeDirectory}" = {
directories = [
{
directory = ".local/share/PrismLauncher";
method = "symlink";
}
];
};
}

0 comments on commit 225a102

Please sign in to comment.