nixos/modules/home/default.nix

17 lines
420 B
Nix
Raw Normal View History

2023-01-11 20:22:35 +00:00
{ pkgs, lib, config, ... }:
{
home-manager.users.root.home.stateVersion = "22.11";
home-manager.users.jake.home.stateVersion = "22.11";
imports = [
2023-01-21 20:08:05 +00:00
./git.nix
2023-01-11 20:22:35 +00:00
./tmux/default.nix
];
## Set an empty ZSH config and defer to the global one
## This is particularly important for root on tmpfs
home-manager.users.root.programs.zsh.enable = true;
home-manager.users.jake.programs.zsh.enable = true;
}