nixos/modules/home/default.nix
Jake Hillion c31106951b
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
git: ship .gitconfig
2023-01-21 20:08:14 +00:00

17 lines
420 B
Nix

{ pkgs, lib, config, ... }:
{
home-manager.users.root.home.stateVersion = "22.11";
home-manager.users.jake.home.stateVersion = "22.11";
imports = [
./git.nix
./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;
}