aboutsummaryrefslogtreecommitdiff
path: root/home.nix
blob: f6e8d0c7369efcc79e097501666afdfdbf353e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ config, pkgs, inputs, ... }:

{
  imports = [
    ./config/git.nix
    ./config/zsh.nix
    ./config/starship.nix
    ./config/ghostty.nix
  ];

  home.username = "swarn";
  home.homeDirectory = "/home/swarn";
  
  home.stateVersion = "25.11";

  home.packages = [
    inputs.hypr-wellbeing.packages.${pkgs.system}.default   
  ];

  home = {
    sessionPath = [
      "${config.home.homeDirectory}/.local/bin"
      "${config.home.homeDirectory}/.local/bin/statusbar"
      "${config.home.homeDirectory}/.local/share/cargo/bin"
      "${config.home.homeDirectory}/Applications"
      "${config.home.homeDirectory}/dox/jai/bin"
    ];

    sessionVariables = {
      EDITOR = "nvim";
      BROWSER = "helium-browser";
      TERMINAL = "ghostty";

      ZDOTDIR = "${config.home.homeDirectory}/.config/zsh";
    };
  };

  programs.home-manager.enable = true;
  systemd.user.startServices = "sd-switch";
}