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:
parent
26c340bfd2
commit
0cb1086adc
1 changed files with 21 additions and 0 deletions
21
configs/shared/.config/nixpkgs/home.nix
Normal file
21
configs/shared/.config/nixpkgs/home.nix
Normal 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
|
||||
##############################################################################
|
||||
}
|
Loading…
Reference in a new issue