blob: d62f2592bd6c3f8d3dd65da9f8911b02e7abaea4 (
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
|
{
config,
inputs,
system ? builtins.currentSystem,
...
}:
{
imports = with inputs; [
./editor
./education
./filesystem
./nix
./system
./utility
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"
];
};
}
|