21 lines
350 B
Nix
21 lines
350 B
Nix
{ pkgs, ... }:
|
|
{
|
|
persistDirs = [
|
|
"docs"
|
|
"repos"
|
|
"vids"
|
|
"tmp"
|
|
".tor project"
|
|
".local/share/PrismLauncher"
|
|
];
|
|
programs = {
|
|
obs-studio.enable = true;
|
|
thunderbird.enable = true;
|
|
thunderbird.profiles.rafiq.isDefault = true;
|
|
};
|
|
home.packages = with pkgs; [
|
|
stremio
|
|
tor-browser
|
|
prismlauncher
|
|
];
|
|
}
|