mirror of
https://github.com/MagicBOTAlex/nixos-server.git
synced 2025-09-05 13:26:51 +02:00
neovim
This commit is contained in:
commit
f358915432
6 changed files with 465 additions and 0 deletions
18
home.nix
Normal file
18
home.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [ ./modules/nvim.nix ];
|
||||
|
||||
# packages only for this user
|
||||
home.packages = [ ];
|
||||
|
||||
# env variables for this user
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim"; # use nvim as editor
|
||||
};
|
||||
|
||||
home.stateVersion = "25.11";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue