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 = [
./common
./common/pentesting.nix
./common/gui/foot.nix
./common/gui/default.nix
];
programs.nix-index-database.comma.enable = true;
@ -116,6 +118,13 @@ in
flags = [ "--disable-up-arrow" ];
};
programs.zathura = {
enable = true;
options = {
recolor = false;
};
};
programs.firefox = {
enable = true;
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 {
home.packages = with pkgs; [
cosmic-files
];
systemd.user.services.xwayland-satellite = {
Install = {
WantedBy = [ "graphical-session.target" ];