mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-24 04:40:53 +01:00
fix: fix eval error on nerdfonts
This commit is contained in:
parent
df4c52c5d0
commit
7c30c450e0
2 changed files with 59 additions and 56 deletions
|
@ -26,7 +26,7 @@ with lib;
|
|||
};
|
||||
font = {
|
||||
name = "FiraCode Nerd Font Mono Reg";
|
||||
package = with pkgs; (nerdfonts.override { fonts = [ "FiraCode" ]; });
|
||||
package = pkgs.nerd-fonts.fira-code;
|
||||
};
|
||||
themeFile = "Catppuccin-Mocha";
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, lib, ... }:
|
||||
{
|
||||
|
||||
luj.hmgr.julien = {
|
||||
|
@ -60,60 +60,62 @@
|
|||
];
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
du-dust
|
||||
kitty
|
||||
jq
|
||||
lazygit
|
||||
fira-code
|
||||
feh
|
||||
meld
|
||||
nerdfonts
|
||||
jetbrains-mono
|
||||
cantarell-fonts
|
||||
unstable.nixd
|
||||
libreoffice
|
||||
signal-desktop
|
||||
font-awesome
|
||||
nodejs
|
||||
htop
|
||||
evince
|
||||
mosh
|
||||
flameshot
|
||||
kitty
|
||||
networkmanagerapplet
|
||||
element-desktop
|
||||
xdg-utils
|
||||
step-cli
|
||||
scli
|
||||
jftui
|
||||
texlive.combined.scheme-full
|
||||
inochi-creator
|
||||
inochi-session
|
||||
gh
|
||||
ouch
|
||||
spotify
|
||||
nautilus
|
||||
pika-backup
|
||||
mpv
|
||||
zotero
|
||||
emacsPackages.jinx
|
||||
hunspellDicts.en_US
|
||||
rstudio
|
||||
forge-sparks
|
||||
citations
|
||||
blanket
|
||||
fragments
|
||||
metadata-cleaner
|
||||
gnome-obfuscate
|
||||
warp
|
||||
tuba
|
||||
resources
|
||||
notify-client
|
||||
emacs-lsp-booster
|
||||
pyright
|
||||
nixfmt-rfc-style
|
||||
];
|
||||
home.packages =
|
||||
with pkgs;
|
||||
[
|
||||
du-dust
|
||||
kitty
|
||||
jq
|
||||
lazygit
|
||||
fira-code
|
||||
feh
|
||||
meld
|
||||
jetbrains-mono
|
||||
cantarell-fonts
|
||||
unstable.nixd
|
||||
libreoffice
|
||||
signal-desktop
|
||||
font-awesome
|
||||
nodejs
|
||||
htop
|
||||
evince
|
||||
mosh
|
||||
flameshot
|
||||
kitty
|
||||
networkmanagerapplet
|
||||
element-desktop
|
||||
xdg-utils
|
||||
step-cli
|
||||
scli
|
||||
jftui
|
||||
texlive.combined.scheme-full
|
||||
inochi-creator
|
||||
inochi-session
|
||||
gh
|
||||
ouch
|
||||
spotify
|
||||
nautilus
|
||||
pika-backup
|
||||
mpv
|
||||
zotero
|
||||
emacsPackages.jinx
|
||||
hunspellDicts.en_US
|
||||
rstudio
|
||||
forge-sparks
|
||||
citations
|
||||
blanket
|
||||
fragments
|
||||
metadata-cleaner
|
||||
gnome-obfuscate
|
||||
warp
|
||||
tuba
|
||||
resources
|
||||
notify-client
|
||||
emacs-lsp-booster
|
||||
pyright
|
||||
nixfmt-rfc-style
|
||||
]
|
||||
++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts);
|
||||
|
||||
fonts.fontconfig.enable = true;
|
||||
|
||||
|
@ -150,6 +152,7 @@
|
|||
".config/dconf"
|
||||
".local/share/keyrings"
|
||||
".cache/mu"
|
||||
"Maildir"
|
||||
];
|
||||
allowOther = true;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue