Files
nixos/home-manager/home.nix
T
biscuit 6f6145f1c0 backup
2025-05-06 14:58:15 -05:00

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";
}