From 0cb1086adcadafcb4d5c41f2abcc3436b284fb15 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Thu, 5 Mar 2020 13:18:17 +0000 Subject: [PATCH] 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. --- configs/shared/.config/nixpkgs/home.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 configs/shared/.config/nixpkgs/home.nix diff --git a/configs/shared/.config/nixpkgs/home.nix b/configs/shared/.config/nixpkgs/home.nix new file mode 100644 index 000000000..8307d6b86 --- /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 + ############################################################################## +}