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