2025-01-05 03:15:23 +05:30
|
|
|
{
|
|
|
|
|
pkgs,
|
|
|
|
|
username,
|
|
|
|
|
email,
|
|
|
|
|
outputs,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
|
|
|
|
imports = [
|
2025-01-10 22:47:01 +05:30
|
|
|
# ../../modules/alacritty.nix
|
|
|
|
|
../../modules/git.nix
|
2025-01-11 20:54:23 +05:30
|
|
|
../../modules/fastfetch.nix
|
2025-01-10 22:47:01 +05:30
|
|
|
../../modules/kitty.nix
|
|
|
|
|
../../modules/nvim.nix
|
|
|
|
|
../../modules/shell.nix
|
|
|
|
|
../../modules/starship.nix
|
|
|
|
|
../../modules/tmux.nix
|
2025-01-05 03:15:23 +05:30
|
|
|
];
|
|
|
|
|
|
|
|
|
|
home.packages = [
|
|
|
|
|
pkgs.air
|
2025-02-13 10:56:48 +05:30
|
|
|
pkgs.bun
|
2025-01-05 03:15:23 +05:30
|
|
|
pkgs.go
|
|
|
|
|
pkgs.nodejs_23
|
|
|
|
|
pkgs.pnpm
|
2025-01-07 15:48:29 +05:30
|
|
|
|
2025-01-10 22:47:01 +05:30
|
|
|
pkgs.discord # nigga ain't working properly
|
2025-01-07 15:48:29 +05:30
|
|
|
pkgs.redis
|
2025-02-26 23:35:10 +05:30
|
|
|
pkgs.postgresql_17_jit
|
2025-01-05 03:15:23 +05:30
|
|
|
];
|
|
|
|
|
|
|
|
|
|
nixpkgs = {
|
|
|
|
|
overlays = [
|
|
|
|
|
outputs.overlays.additions
|
|
|
|
|
outputs.overlays.modifications
|
|
|
|
|
outputs.overlays.stable-packages
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
home.stateVersion = "24.11";
|
|
|
|
|
|
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
|
}
|