mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
add overlay
This commit is contained in:
parent
42fde14fdb
commit
f7319aa6ce
1 changed files with 39 additions and 25 deletions
|
@ -12,6 +12,21 @@
|
|||
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.
|
||||
|
||||
# time.timeZone = "Europe/Amsterdam";
|
||||
|
@ -60,35 +75,34 @@
|
|||
# rofi
|
||||
# picom
|
||||
# dunst
|
||||
(wavebox.override {
|
||||
version = 10.107 .10 })
|
||||
firefox
|
||||
(python3.withPackages (p: with p;
|
||||
[ pynvim ]))
|
||||
];
|
||||
|
||||
firefox
|
||||
(python3.withPackages (p: with p;
|
||||
[ pynvim ]))
|
||||
];
|
||||
|
||||
|
||||
fonts.fonts = with pkgs; [
|
||||
font-awesome
|
||||
noto-fonts
|
||||
noto-fonts-cjk
|
||||
noto-fonts-emoji
|
||||
noto-fonts-extra
|
||||
last-resort
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
fonts.fonts = with pkgs; [
|
||||
font-awesome
|
||||
noto-fonts
|
||||
noto-fonts-cjk
|
||||
noto-fonts-emoji
|
||||
noto-fonts-extra
|
||||
last-resort
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
|
||||
];
|
||||
];
|
||||
|
||||
|
||||
environment.variables = {
|
||||
NIX_LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [
|
||||
stdenv.cc.cc
|
||||
openssl
|
||||
environment.variables = {
|
||||
NIX_LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [
|
||||
stdenv.cc.cc
|
||||
openssl
|
||||
|
||||
zlib # for delta
|
||||
fuse # for libfuse/Neovim Appimage
|
||||
];
|
||||
NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
|
||||
};
|
||||
zlib # for delta
|
||||
fuse # for libfuse/Neovim Appimage
|
||||
];
|
||||
NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue