nix-configurations/home/default.nix

21 lines
264 B
Nix
Raw Normal View History

2022-12-30 12:05:46 +00:00
{ ... }:
{
imports = [ ./tmux ];
nixpkgs.config = {
allowBroken = true;
allowUnfree = true;
manual.manpages.enable = true;
};
systemd.user.startServices = true;
programs = {
home-manager.enable = true;
git.enable = true;
};
}