nixos/hosts/Legion/home.nix

21 lines
369 B
Nix
Raw Normal View History

{ pkgs, user, shellConfig, ... }:
let homeDirectory = "/home/${user}";
in {
imports = [
shellConfig
../../home/emacs
../../home/git
../../home/ssh
../../home/tui
];
home = {
inherit homeDirectory;
username = user;
stateVersion = "22.11";
};
2023-08-31 07:58:13 +01:00
programs = {
home-manager.enable = true;
emacs.package = pkgs.emacs29;
};
}