aboutsummaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix33
1 files changed, 19 insertions, 14 deletions
diff --git a/home.nix b/home.nix
index a82dd47..5ef3b7d 100644
--- a/home.nix
+++ b/home.nix
@@ -2,23 +2,23 @@
{
imports = [
+ ./home/nix.nix
./home/git.nix
+ ./home/bat.nix
+ ./home/eza.nix
+ ./home/fzf.nix
./home/zsh.nix
./home/tmux.nix
./home/starship.nix
./home/ghostty.nix
];
- home.username = "swarn";
- home.homeDirectory = "/home/swarn";
-
- home.stateVersion = "25.11";
+ home = {
+ username = "swarn";
+ homeDirectory = "/home/swarn";
- home.packages = [
- inputs.hypr-wellbeing.packages.${pkgs.system}.default
- ];
+ stateVersion = "25.11";
- home = {
sessionPath = [
"${config.home.homeDirectory}/.local/bin"
"${config.home.homeDirectory}/.local/bin/statusbar"
@@ -34,17 +34,22 @@
ZDOTDIR = "${config.home.homeDirectory}/.config/zsh";
};
+
+ packages = with pkgs; [
+ bat
+ eza
+ fzf
+ git
+ starship
+ tmux
+ inputs.hypr-wellbeing.packages.${pkgs.system}.default
+ inputs.luffy.packages.${system}.luffy
+ ];
};
programs = {
home-manager.enable = true;
- git.enable = true;
- bat.enable = true;
- tmux.enable = true;
- starship.enable = true;
};
systemd.user.startServices = "sd-switch";
-
-
}