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 = [
|
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";
|
||||||
|
|
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 {
|
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" ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue