This repository has been archived on 2025-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
nix-configurations/home/default.nix
2022-12-30 13:05:46 +01:00

21 lines
264 B
Nix

{ ... }:
{
imports = [ ./tmux ];
nixpkgs.config = {
allowBroken = true;
allowUnfree = true;
manual.manpages.enable = true;
};
systemd.user.startServices = true;
programs = {
home-manager.enable = true;
git.enable = true;
};
}