Install chromium, thunderbird and tor-browser

This commit is contained in:
Valentin Brandl 2022-02-18 14:41:13 +01:00
parent a6848287b9
commit 5fa9a0498c
4 changed files with 18 additions and 0 deletions

5
home/chromium.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
ungoogled-chromium
];
}

View File

@ -2,6 +2,7 @@ user:
{ ... }: { { ... }: {
imports = [ imports = [
./bat.nix ./bat.nix
./chromium.nix
./direnv.nix ./direnv.nix
./discord.nix ./discord.nix
./dunst.nix ./dunst.nix
@ -29,6 +30,8 @@ user:
./rust.nix ./rust.nix
./signal.nix ./signal.nix
./telegram.nix ./telegram.nix
./thunderbird.nix
./tor.nix
./tmux.nix ./tmux.nix
./xdg.nix ./xdg.nix
./zathura.nix ./zathura.nix

5
home/thunderbird.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
thunderbird
];
}

5
home/tor.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
tor-browser-bundle-bin
];
}