home/xin: add thunar,zathura,burpsuite
This commit is contained in:
parent
6991031aff
commit
39737718a4
4 changed files with 27 additions and 4 deletions
|
@ -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";
|
||||
|
|
12
home/xin/common/gui/default.nix
Normal file
12
home/xin/common/gui/default.nix
Normal 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
|
||||
];
|
||||
}
|
6
home/xin/common/pentesting.nix
Normal file
6
home/xin/common/pentesting.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
burpsuite
|
||||
];
|
||||
}
|
|
@ -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" ];
|
||||
|
|
Loading…
Add table
Reference in a new issue