nixos-configs/common/overlays/default.nix

19 lines
238 B
Nix

{
neovim-flake,
nixpkgs-wayland,
...
}: {
imports = [
./dracula-theme
./regreet
];
nixpkgs.overlays = [
(import ./blueberry)
(import ./squeekboard)
neovim-flake.overlay
nixpkgs-wayland.overlay
];
}