mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
16 lines
390 B
Nix
16 lines
390 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
neovim
|
|
neovide
|
|
lua-language-server
|
|
];
|
|
home.file.".config/nvim".source = ./.;
|
|
home.file.".config/nvim".recursive = true;
|
|
home.file.".config/nvim/lua/themes/stylix.lua".source = config.lib.stylix.colors {
|
|
template = builtins.readFile ./lua/themes/stylix.lua.mustache;
|
|
extension = ".lua";
|
|
};
|
|
}
|