12 lines
189 B
Nix
12 lines
189 B
Nix
{ config, pkgs, inputs, ... }:
|
|
{
|
|
home.username = "root";
|
|
|
|
home.enableNixpkgsReleaseCheck = false;
|
|
|
|
imports = [
|
|
./../apps/neovim
|
|
];
|
|
|
|
home.stateVersion = "25.05";
|
|
}
|