nixos/modules/home/default.nix

27 lines
484 B
Nix
Raw Normal View History

2023-01-11 20:22:35 +00:00
{ pkgs, lib, config, ... }:
{
imports = [
2023-01-21 20:08:05 +00:00
./git.nix
2023-01-11 20:22:35 +00:00
./tmux/default.nix
];
2023-05-11 21:12:57 +01:00
config = {
home-manager = {
users.root.home = {
stateVersion = "22.11";
## Set an empty ZSH config and defer to the global one
file.".zshrc".text = "";
};
users."${config.custom.user}".home = {
stateVersion = "22.11";
## Set an empty ZSH config and defer to the global one
file.".zshrc".text = "";
};
};
};
2023-01-11 20:22:35 +00:00
}