mirror of
https://github.com/MagicBOTAlex/nixos-server.git
synced 2025-09-01 03:36:52 +02:00
18 lines
262 B
Nix
18 lines
262 B
Nix
{
|
|
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";
|
|
}
|