mirror of
https://github.com/MagicBOTAlex/nixos-server.git
synced 2026-02-04 05:39:18 +01:00
13 lines
256 B
Nix
13 lines
256 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";
|
|
}
|