summaryrefslogtreecommitdiff
path: root/home/ebisu/core/default.nix
blob: 65ae7e7ac51d44d0e77e980b14b910a4c31195fd (plain) (blame)
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
{
  config,
  inputs,
  system ? builtins.currentSystem,
  ...
}:
{
  imports = with inputs; [
    ./browser
    ./editor
    ./education
    ./filesystem
    ./nix
    ./rice
    ./scripting
    ./system
    ./utility
    ./language.nix
    tailray.homeManagerModules.default
    rui.homeManagerModules.${system}.default
  ];

  programs.home-manager.enable = true;
  services.tailray.enable = true;

  home = {
    username = "ebisu";
    homeDirectory = "/home/${config.home.username}";
    stateVersion = "24.05";

    sessionPath = [
      "${config.home.homeDirectory}/.local/bin"
      "${config.home.homeDirectory}/.local/share/cargo/bin"
      "${config.xdg.configHome}/.emacs.d/bin"
    ];
  };
}