home/xin: add thunar,zathura,burpsuite

This commit is contained in:
xinyangli 2025-01-23 18:19:04 +08:00
parent 6991031aff
commit 39737718a4
Signed by: xin
SSH key fingerprint: SHA256:UU5pRTl7NiLFJbWJZa+snLylZSXIz5rgHmwjzv8v4oE
4 changed files with 27 additions and 4 deletions

View file

@ -5,7 +5,9 @@ in
{ {
imports = [ imports = [
./common ./common
./common/pentesting.nix
./common/gui/foot.nix ./common/gui/foot.nix
./common/gui/default.nix
]; ];
programs.nix-index-database.comma.enable = true; programs.nix-index-database.comma.enable = true;
@ -116,6 +118,13 @@ in
flags = [ "--disable-up-arrow" ]; flags = [ "--disable-up-arrow" ];
}; };
programs.zathura = {
enable = true;
options = {
recolor = false;
};
};
programs.firefox = { programs.firefox = {
enable = true; enable = true;
policies.DefaultDownloadDirectory = "/media/data/Downloads"; policies.DefaultDownloadDirectory = "/media/data/Downloads";

View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
# File Manager
xfce.thunar
xfce.thunar-archive-plugin
xfce.thunar-media-tags-plugin
xfce.thunar-volman
swayimg
];
}

View file

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

View file

@ -34,10 +34,6 @@ in
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = with pkgs; [
cosmic-files
];
systemd.user.services.xwayland-satellite = { systemd.user.services.xwayland-satellite = {
Install = { Install = {
WantedBy = [ "graphical-session.target" ]; WantedBy = [ "graphical-session.target" ];