mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
11 lines
183 B
Nix
11 lines
183 B
Nix
{ pkgs, inputs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
neovim
|
|
neovide
|
|
];
|
|
home.file.".config/nvim".source = inputs.nvchad;
|
|
home.file.".config/nvim".recursive = true;
|
|
}
|