Files
nixos/home-manager/home.nix
T
biscuit 904529022f WIP
2025-05-13 09:38:18 -05:00

44 lines
634 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
# ../packages/nvim/default.nix
];
home = {
username = "biscuit";
homeDirectory = "/home/biscuit";
};
home.packages = [
# pkgs.neovim
];
home.sessionVariables = {
# EDITOR = "nvim";
};
home.file.".config/nvim" = {
source = ./nvchad;
recursive = true;
force = true;
};
programs.git.enable = true;
programs.neovim.enable = true;
programs.bash.shellAliases = {
enable = true;
ll = "ls -l";
};
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home.stateVersion = "23.05";
}