2023-12-10 05:55:07 +00:00
|
|
|
{
|
2024-02-06 10:08:36 +00:00
|
|
|
inputs,
|
2023-12-10 05:55:07 +00:00
|
|
|
pkgs,
|
|
|
|
config,
|
2024-03-20 15:01:42 +00:00
|
|
|
lib,
|
2023-12-10 05:55:07 +00:00
|
|
|
...
|
|
|
|
}: {
|
|
|
|
home = {
|
2024-03-20 15:01:42 +00:00
|
|
|
# for nix-on-droid
|
|
|
|
username = lib.mkDefault "guanranwang";
|
2023-12-10 05:55:07 +00:00
|
|
|
homeDirectory =
|
2024-03-20 15:01:42 +00:00
|
|
|
lib.mkDefault
|
|
|
|
(
|
|
|
|
if pkgs.stdenv.hostPlatform.isDarwin
|
|
|
|
then "/Users/${config.home.username}"
|
|
|
|
else "/home/${config.home.username}"
|
|
|
|
);
|
2023-12-10 05:55:07 +00:00
|
|
|
|
|
|
|
# This value determines the Home Manager release that your
|
|
|
|
# configuration is compatible with. This helps avoid breakage
|
|
|
|
# when a new Home Manager release introduces backwards
|
|
|
|
# incompatible changes.
|
|
|
|
#
|
|
|
|
# You can update Home Manager without changing this value. See
|
|
|
|
# the Home Manager release notes for a list of state version
|
|
|
|
# changes in each release.
|
|
|
|
stateVersion = "23.05";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
|
|
|
|
# Default applications
|
|
|
|
imports = [
|
2024-02-06 10:08:36 +00:00
|
|
|
inputs.self.homeManagerModules.default
|
2024-02-27 07:38:36 +00:00
|
|
|
inputs.nur.hmModules.nur
|
2023-12-10 05:55:07 +00:00
|
|
|
|
|
|
|
./applications/git
|
2024-01-01 13:31:28 +00:00
|
|
|
./applications/gpg
|
2023-12-10 05:55:07 +00:00
|
|
|
./applications/starship
|
|
|
|
./applications/eza
|
|
|
|
./applications/skim
|
|
|
|
./applications/bat
|
|
|
|
./applications/zoxide
|
|
|
|
./applications/ripgrep
|
|
|
|
./applications/wget
|
|
|
|
./applications/fd
|
2024-01-17 11:42:38 +00:00
|
|
|
./applications/atuin
|
2024-02-03 04:13:24 +00:00
|
|
|
./applications/zellij
|
2024-01-14 09:03:39 +00:00
|
|
|
./applications/fastfetch
|
2023-12-10 05:55:07 +00:00
|
|
|
./applications/tealdeer
|
|
|
|
];
|
|
|
|
|
|
|
|
home.shellAliases = {
|
|
|
|
".." = "cd ..";
|
|
|
|
"farsee" = "curl -F 'c=@-' 'https://fars.ee/'"; # pb
|
|
|
|
};
|
|
|
|
}
|