add tor browser
This commit is contained in:
parent
a61f8915d6
commit
7366d8efbe
1 changed files with 72 additions and 68 deletions
|
@ -1,71 +1,75 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, inputs, ... }:
|
||||||
{
|
let
|
||||||
home-manager.users.cyryl = {...}: {
|
unstable = inputs.nixpkgs-nixos-unstable.legacyPackages.${pkgs.system};
|
||||||
gtk = {
|
in
|
||||||
enable = true;
|
{
|
||||||
iconTheme = {
|
home-manager.users.cyryl = {...}: {
|
||||||
name = "Adwaita";
|
gtk = {
|
||||||
package = pkgs.gnome3.adwaita-icon-theme;
|
enable = true;
|
||||||
|
iconTheme = {
|
||||||
|
name = "Adwaita";
|
||||||
|
package = pkgs.gnome3.adwaita-icon-theme;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
qt = {
|
||||||
|
enable = true;
|
||||||
|
platformTheme = "gnome";
|
||||||
|
style.name = "adwaita-dark";
|
||||||
|
style.package = pkgs.adwaita-qt;
|
||||||
};
|
};
|
||||||
};
|
|
||||||
qt = {
|
|
||||||
enable = true;
|
|
||||||
platformTheme = "gnome";
|
|
||||||
style.name = "adwaita-dark";
|
|
||||||
style.package = pkgs.adwaita-qt;
|
|
||||||
};
|
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./vscode.nix
|
./vscode.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; with pkgs.gnome3; with pkgs.python38Packages; [
|
home.packages = with pkgs; with pkgs.gnome3; with pkgs.python38Packages; [
|
||||||
anarchism
|
anarchism
|
||||||
apvlv
|
apvlv
|
||||||
binwalk-full
|
binwalk-full
|
||||||
brave
|
brave
|
||||||
digikam
|
digikam
|
||||||
discord
|
discord
|
||||||
electrum
|
electrum
|
||||||
element-desktop
|
element-desktop
|
||||||
eog
|
eog
|
||||||
evince
|
evince
|
||||||
fontconfig
|
fontconfig
|
||||||
freecad
|
freecad
|
||||||
ghidra-bin
|
ghidra-bin
|
||||||
gimp
|
gimp
|
||||||
glxinfo
|
glxinfo
|
||||||
gnome-screenshot
|
gnome-screenshot
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
hopper
|
hopper
|
||||||
inkscape
|
inkscape
|
||||||
keybase-gui
|
keybase-gui
|
||||||
libreoffice
|
libreoffice
|
||||||
mindforger
|
mindforger
|
||||||
modem-manager-gui
|
modem-manager-gui
|
||||||
nautilus
|
nautilus
|
||||||
nyxt
|
nyxt
|
||||||
openscad
|
openscad
|
||||||
passff-host
|
passff-host
|
||||||
pdfarranger
|
pdfarranger
|
||||||
qcad
|
qcad
|
||||||
qemu
|
qemu
|
||||||
shotwell
|
shotwell
|
||||||
signal-desktop
|
signal-desktop
|
||||||
simple-scan
|
simple-scan
|
||||||
slack
|
slack
|
||||||
spotify
|
spotify
|
||||||
ssb-patchwork
|
ssb-patchwork
|
||||||
vlc
|
unstable.tor-browser-bundle-bin
|
||||||
wineFull
|
vlc
|
||||||
wireshark
|
wineFull
|
||||||
xclip
|
wireshark
|
||||||
xidlehook
|
xclip
|
||||||
yubico-piv-tool
|
xidlehook
|
||||||
yubikey-manager-qt
|
yubico-piv-tool
|
||||||
yubikey-personalization
|
yubikey-manager-qt
|
||||||
yubikey-personalization-gui
|
yubikey-personalization
|
||||||
zoom-us
|
yubikey-personalization-gui
|
||||||
];
|
zoom-us
|
||||||
};
|
];
|
||||||
}
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue