2023-07-24 13:27:05 +01:00
|
|
|
{shellConfig, ...}: let
|
2023-07-16 17:35:36 +01:00
|
|
|
username = "xenia";
|
|
|
|
homeDirectory = "/home/${username}";
|
|
|
|
in {
|
|
|
|
imports = [
|
2023-07-19 08:57:48 +01:00
|
|
|
shellConfig
|
2023-07-16 17:35:36 +01:00
|
|
|
../../home/git/personal.nix
|
|
|
|
../../home/ssh/personal.nix
|
2023-07-16 17:48:23 +01:00
|
|
|
../../home/tui
|
2023-07-16 17:35:36 +01:00
|
|
|
];
|
2023-07-13 12:41:00 +01:00
|
|
|
home = {
|
2023-07-16 17:35:36 +01:00
|
|
|
inherit username homeDirectory;
|
2023-07-13 12:41:00 +01:00
|
|
|
stateVersion = "22.11";
|
|
|
|
};
|
2023-07-24 13:27:05 +01:00
|
|
|
programs.home-manager.enable = true;
|
2023-07-13 12:41:00 +01:00
|
|
|
}
|