22 lines
379 B
Nix
22 lines
379 B
Nix
{ pkgs, shellConfig, ... }:
|
|
let
|
|
username = "xenia";
|
|
homeDirectory = "/home/${username}";
|
|
in {
|
|
imports = [
|
|
shellConfig
|
|
../../home/emacs
|
|
../../home/git
|
|
../../home/ssh
|
|
../../home/tui
|
|
];
|
|
home = {
|
|
inherit username homeDirectory;
|
|
stateVersion = "22.11";
|
|
};
|
|
programs = {
|
|
home-manager.enable = true;
|
|
emacs.package = pkgs.emacs29;
|
|
};
|
|
}
|