mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 05:02:10 -08:00
10 lines
204 B
Nix
10 lines
204 B
Nix
{
|
|
imports = [ ./shellenv ];
|
|
# Let home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
|
|
home.file.".essentials" = {
|
|
source = ./essentials;
|
|
recursive = true;
|
|
};
|
|
}
|