Defcon configuration
This commit is contained in:
parent
2de99da8e7
commit
572a496704
9 changed files with 75 additions and 17 deletions
12
modules/fonts.nix
Normal file
12
modules/fonts.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
fonts.fontconfig = {
|
||||
enable = true;
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
dejavu_fonts
|
||||
noto-fonts
|
||||
noto-fonts-extra
|
||||
noto-fonts-cjk
|
||||
];
|
||||
}
|
||||
|
|
@ -1,20 +1,22 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
nord = import ../configs/themes/nord.nix;
|
||||
in {
|
||||
home.packages = [ pkgs.nerdfonts ];
|
||||
in
|
||||
{
|
||||
home.packages = [ pkgs.rice.font.monospace.package ];
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
# font = pkgs.rice.font.monospace;
|
||||
# font = {
|
||||
# package = pkgs.nerdfonts;
|
||||
# name = "Fira Code Retina Nerd Font Complete";
|
||||
# size = 9;
|
||||
# };
|
||||
font = "FuraCode Nerd Font Mono 10";
|
||||
font = "${pkgs.rice.font.monospace.name} 10";
|
||||
};
|
||||
extraConfig = ''
|
||||
backround_opacity = 0.95;
|
||||
backround_opacity = 0.95;
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -71,7 +71,12 @@ let
|
|||
ramp = [ "▂" "▃" "▄" "▅" "▆" "▇" ];
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [ nerdfonts emojione noto-fonts-emoji material-design-icons ];
|
||||
home.packages = with pkgs; [
|
||||
pkgs.rice.font.monospace.package
|
||||
emojione
|
||||
noto-fonts-emoji
|
||||
material-design-icons
|
||||
];
|
||||
services.polybar = {
|
||||
enable = true;
|
||||
package = pkgs.polybarFull;
|
||||
|
|
|
|||
|
|
@ -2,11 +2,16 @@
|
|||
{
|
||||
home.packages = with pkgs; [
|
||||
# WEB
|
||||
postman
|
||||
# burpsuite
|
||||
altair
|
||||
burpsuite
|
||||
httpie
|
||||
|
||||
# REVERSING
|
||||
ghidra-bin
|
||||
radare2
|
||||
cutter
|
||||
|
||||
# INFRASTRUCTURE
|
||||
cocktail-bar-cli
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue