add overlay

This commit is contained in:
Daylin Morgan 2022-11-09 19:45:01 +00:00
parent 42fde14fdb
commit f7319aa6ce

View file

@ -12,6 +12,21 @@
experimental-features = nix-command flakes experimental-features = nix-command flakes
''; '';
nixpkgs.overlays = [
(self: super: /* overlay goes here */
{
wavebox = super.wavebox.overrideAttrs (old: {
version = "10.107.10";
});
}
)
];
# networking.hostName = "nixos"; # Define your hostname. # networking.hostName = "nixos"; # Define your hostname.
# time.timeZone = "Europe/Amsterdam"; # time.timeZone = "Europe/Amsterdam";
@ -60,35 +75,34 @@
# rofi # rofi
# picom # picom
# dunst # dunst
(wavebox.override {
version = 10.107 .10 }) firefox
firefox (python3.withPackages (p: with p;
(python3.withPackages (p: with p; [ pynvim ]))
[ pynvim ])) ];
];
fonts.fonts = with pkgs; [ fonts.fonts = with pkgs; [
font-awesome font-awesome
noto-fonts noto-fonts
noto-fonts-cjk noto-fonts-cjk
noto-fonts-emoji noto-fonts-emoji
noto-fonts-extra noto-fonts-extra
last-resort last-resort
(nerdfonts.override { fonts = [ "FiraCode" ]; }) (nerdfonts.override { fonts = [ "FiraCode" ]; })
]; ];
environment.variables = { environment.variables = {
NIX_LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [ NIX_LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [
stdenv.cc.cc stdenv.cc.cc
openssl openssl
zlib # for delta zlib # for delta
fuse # for libfuse/Neovim Appimage fuse # for libfuse/Neovim Appimage
]; ];
NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker"; NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
}; };
} }