33 lines
461 B
Nix
33 lines
461 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.nvchad4nix.homeManagerModule
|
|
];
|
|
|
|
home = {
|
|
username = "biscuit";
|
|
homeDirectory = "/home/biscuit";
|
|
};
|
|
|
|
home.packages = [];
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
programs.git.enable = true;
|
|
programs.nvchad.enable - true;
|
|
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
home.stateVersion = "23.11";
|
|
}
|
|
|