2024-08-05 03:13:16 +05:30
|
|
|
{ pkgs, ... }:
|
2024-08-04 23:45:01 +05:30
|
|
|
{
|
2024-08-05 02:17:49 +05:30
|
|
|
imports = [
|
|
|
|
./components/hyprland.nix
|
|
|
|
];
|
|
|
|
|
2024-08-04 23:45:01 +05:30
|
|
|
programs = {
|
|
|
|
home-manager.enable = true;
|
|
|
|
|
|
|
|
bash = {
|
|
|
|
enable = true;
|
|
|
|
historyControl = [ "ignoreboth" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
git = {
|
|
|
|
enable = true;
|
|
|
|
userName = "xezo360hye";
|
|
|
|
userEmail = "xezo360hye@gmail.com";
|
|
|
|
extraConfig = {
|
|
|
|
init.defaultBranch = "master";
|
|
|
|
url."https://github.com/".insteadOf = [ "gh:" "github:" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
neovim = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
viAlias = true;
|
|
|
|
vimAlias = true;
|
|
|
|
defaultEditor = true;
|
|
|
|
|
|
|
|
extraLuaConfig = ''
|
|
|
|
vim.cmd "colorscheme desert"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
fastfetch = {
|
|
|
|
enable = true;
|
|
|
|
settings = {};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
ani-cli
|
|
|
|
ytfzf
|
|
|
|
];
|
|
|
|
|
|
|
|
home.sessionVariables = {
|
|
|
|
ANI_CLI_PLAYER = "mpv";
|
|
|
|
};
|
|
|
|
|
|
|
|
home = {
|
|
|
|
username = "andrey";
|
|
|
|
homeDirectory = "/home/andrey";
|
|
|
|
stateVersion = "24.05";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et
|