0cb1086adc
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.
21 lines
544 B
Nix
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
|
|
##############################################################################
|
|
}
|