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.
This commit is contained in:
William Carroll 2020-03-05 13:18:17 +00:00
parent 26c340bfd2
commit 0cb1086adc

View file

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