This commit is contained in:
2025-12-26 11:02:58 +01:00
commit 83841223bb
15 changed files with 922 additions and 0 deletions

21
home/default.nix Normal file
View File

@@ -0,0 +1,21 @@
{ primaryUser, inputs, ... }:
{
imports = [
inputs.nixvim.homeManagerModules.nixvim
./neovim
./packages.nix
./git.nix
./shell.nix
];
home = {
username = primaryUser;
stateVersion = "25.11";
sessionVariables = {
# shared environment variables
};
# create .hushlogin file to suppress login messages
file.".hushlogin".text = "";
};
}