add fonts
This commit is contained in:
parent
49a3a1128a
commit
d03507a3fa
5 changed files with 17 additions and 6 deletions
|
|
@ -12,8 +12,8 @@
|
|||
{ self, nixpkgs-unstable, nixpkgs, ... }@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
pkgsUnstable = import nixpkgs-unstable { inherit system; };
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
pkgsUnstable = nixpkgs-unstable.legacyPackages.${system};
|
||||
in {
|
||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt-rfc-style;
|
||||
nixosConfigurations.dn-nix = nixpkgs.lib.nixosSystem {
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ bind = $mainMod SHIFT, h, movewindow, l
|
|||
bind = $mainMod SHIFT, k, movewindow, u
|
||||
bind = $mainMod SHIFT, j, movewindow, d
|
||||
|
||||
bind = $mainMod, f, exec, opera
|
||||
bind = $mainMod, f, exec, firefox
|
||||
|
||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||
bindm = $mainMod, mouse:272, movewindow
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
home.sessionVariables = {
|
||||
BROWSER = "opera";
|
||||
BROWSER = "firefox";
|
||||
EDITOR = "nvim";
|
||||
TERMINAL = "kitty";
|
||||
NIXOS_OZONE_WL = "1";
|
||||
|
|
|
|||
|
|
@ -3,8 +3,9 @@
|
|||
{
|
||||
home.packages = [
|
||||
pkgs.vscode
|
||||
pkgs.opera
|
||||
# pkgs.opera
|
||||
pkgs.discord
|
||||
pkgs.firefox
|
||||
|
||||
# Dev stuff
|
||||
pkgs.gcc
|
||||
|
|
|
|||
|
|
@ -4,7 +4,17 @@
|
|||
fonts.packages = with pkgs; [
|
||||
font-awesome
|
||||
jetbrains-mono
|
||||
noto-fonts-cjk-sans
|
||||
noto-fonts-cjk-serif
|
||||
|
||||
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
||||
(nerdfonts.override { fonts = [ "CascadiaCode" ]; })
|
||||
];
|
||||
|
||||
fonts.fontconfig = {
|
||||
defaultFonts = {
|
||||
serif = [ "CaskaydiaCove Nerd Font" "Noto Sans CJK" ];
|
||||
sansSerif = [ "CaskaydiaCove Nerd Font" "Noto Sans CJK" ];
|
||||
monospace = [ "CaskaydiaCove Nerd Font Mono" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue