2023-10-03 22:04:08 +00:00
|
|
|
{ inputs, pkgs, username, self }:
|
2023-08-08 19:15:31 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
home.username = "${username}";
|
|
|
|
home.homeDirectory = "/home/${username}";
|
|
|
|
|
|
|
|
home.stateVersion = "22.05";
|
|
|
|
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
|
2023-11-06 23:48:09 +00:00
|
|
|
imports = [
|
2023-11-09 12:55:20 +00:00
|
|
|
(import ./modules/neovim.nix { inherit inputs pkgs self; })
|
2023-11-06 23:48:09 +00:00
|
|
|
./modules/git.nix
|
|
|
|
./modules/starship.nix
|
|
|
|
./modules/tmux.nix
|
|
|
|
./modules/zsh.nix
|
|
|
|
];
|
2023-08-08 19:15:31 +00:00
|
|
|
|
|
|
|
programs.bat.enable = true;
|
|
|
|
|
2023-08-11 18:55:56 +00:00
|
|
|
home.file."logo.txt" = {
|
|
|
|
source = pkgs.copyPathToStore "${self}/logo.txt";
|
|
|
|
target = "logo.txt";
|
|
|
|
};
|
|
|
|
|
2023-08-08 19:15:31 +00:00
|
|
|
programs.nnn.enable = true;
|
|
|
|
|
2023-08-29 22:04:12 +00:00
|
|
|
programs.direnv = {
|
|
|
|
enable = true;
|
|
|
|
enableZshIntegration = true;
|
|
|
|
nix-direnv.enable = true;
|
|
|
|
};
|
|
|
|
|
2023-12-08 07:18:00 +00:00
|
|
|
programs.zoxide = {
|
|
|
|
enable = true;
|
|
|
|
enableZshIntegration = true;
|
|
|
|
};
|
|
|
|
|
2023-08-08 19:15:31 +00:00
|
|
|
home.sessionPath = [ "$HOME/.config/bin" ];
|
|
|
|
|
|
|
|
xdg.configFile."ripgrep/config".text = ''
|
|
|
|
--follow
|
|
|
|
--smart-case
|
|
|
|
'';
|
|
|
|
|
|
|
|
xdg.configFile.bin = {
|
|
|
|
source = ../../bin;
|
|
|
|
recursive = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
xdg.configFile.phpactor = {
|
|
|
|
source = ../../config/phpactor;
|
|
|
|
recursive = true;
|
|
|
|
};
|
|
|
|
}
|