tvl-depot/configs/shared/.config/nixpkgs/home.nix
William Carroll 0cb1086adc Support Nix home-manager
Last night @adisbladis convinced me to try home manager. I'm growing weary of
wrestling with symlinks, so I'm willing to give this a try.
2020-03-05 13:18:17 +00:00

21 lines
544 B
Nix

{ config, pkgs, ... }:
{
home.packages = with pkgs; [
];
home.stateVersion = "19.09";
##############################################################################
# Programs
##############################################################################
programs.home-manager = {
enable = true;
path = builtins.toPath ~/home-manager;
};
##############################################################################
# Services
##############################################################################
}