19 lines
263 B
Nix
19 lines
263 B
Nix
{
|
|
neovim-flake,
|
|
nixpkgs-wayland,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./dracula-theme
|
|
./regreet
|
|
];
|
|
|
|
nixpkgs.overlays = [
|
|
(import ./blueberry)
|
|
(import ./spotifywm)
|
|
(import ./squeekboard)
|
|
|
|
neovim-flake.overlay
|
|
nixpkgs-wayland.overlay
|
|
];
|
|
}
|