Compare commits
2 commits
beba034c17
...
e2d8337e99
Author | SHA1 | Date | |
---|---|---|---|
e2d8337e99 | |||
1c0b4d13dc |
4 changed files with 32 additions and 17 deletions
|
@ -1,20 +1,4 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
fonts.packages = with pkgs; [
|
|
||||||
(nerdfonts.override {fonts = ["FiraCode"];})
|
|
||||||
montserrat
|
|
||||||
noto-fonts
|
|
||||||
atkinson-hyperlegible
|
|
||||||
arkpandora_ttf
|
|
||||||
liberation_ttf
|
|
||||||
caladea
|
|
||||||
carlito
|
|
||||||
garamond-libre
|
|
||||||
ocr-a
|
|
||||||
amiri
|
|
||||||
libertine
|
|
||||||
inter
|
|
||||||
];
|
|
||||||
fonts.fontDir.enable = true;
|
|
||||||
home-manager.users.jade = {pkgs, ...}: {
|
home-manager.users.jade = {pkgs, ...}: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
audacity
|
audacity
|
||||||
|
|
|
@ -32,6 +32,7 @@ in
|
||||||
./specific-hardware
|
./specific-hardware
|
||||||
./evremap.nix
|
./evremap.nix
|
||||||
./xmonad.nix
|
./xmonad.nix
|
||||||
|
./fonts.nix
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
18
modules/desktop/fonts.nix
Normal file
18
modules/desktop/fonts.nix
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
fonts.packages = with pkgs; [
|
||||||
|
(nerdfonts.override {fonts = ["FiraCode"];})
|
||||||
|
montserrat
|
||||||
|
noto-fonts
|
||||||
|
atkinson-hyperlegible
|
||||||
|
arkpandora_ttf
|
||||||
|
liberation_ttf
|
||||||
|
caladea
|
||||||
|
carlito
|
||||||
|
garamond-libre
|
||||||
|
ocr-a
|
||||||
|
amiri
|
||||||
|
libertine
|
||||||
|
inter
|
||||||
|
];
|
||||||
|
fonts.fontDir.enable = true;
|
||||||
|
}
|
|
@ -53,9 +53,21 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
keys.normal = {
|
keys = {
|
||||||
|
|
||||||
|
normal = {
|
||||||
space."=" = ":fmt";
|
space."=" = ":fmt";
|
||||||
};
|
};
|
||||||
|
insert = {
|
||||||
|
up = "no_op";
|
||||||
|
down = "no_op";
|
||||||
|
left = "no_op";
|
||||||
|
right = "no_op";
|
||||||
|
pageup = "no_op";
|
||||||
|
pagedown = "no_op";
|
||||||
|
home = "no_op";
|
||||||
|
end = "no_op";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
languages = {
|
languages = {
|
||||||
language-server = {
|
language-server = {
|
||||||
|
|
Loading…
Reference in a new issue