Files
nixos/home-manager/home.nix
T
biscuit 94f91e9a6d WIP
2025-05-13 09:42:02 -05:00

44 lines
639 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";
}