Defcon configuration
This commit is contained in:
parent
2de99da8e7
commit
572a496704
9 changed files with 75 additions and 17 deletions
|
|
@ -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;
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue