diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-05T13·18+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-05T13·18+0000 |
commit | 0cb1086adcadafcb4d5c41f2abcc3436b284fb15 (patch) | |
tree | 8a96ee9c1dc952fcf51320cb97b14aa30b03e8c4 /configs | |
parent | 26c340bfd26b8fef2cdb0bc812d9f663b7dc145e (diff) |
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.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/shared/.config/nixpkgs/home.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/configs/shared/.config/nixpkgs/home.nix b/configs/shared/.config/nixpkgs/home.nix new file mode 100644 index 000000000000..8307d6b86a29 --- /dev/null +++ b/configs/shared/.config/nixpkgs/home.nix @@ -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 + ############################################################################## +} |