This commit is contained in:
botalex 2025-08-11 15:17:54 +02:00
commit f358915432
6 changed files with 465 additions and 0 deletions

18
home.nix Normal file
View 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";
}