mirror of
https://github.com/youwen5/liminalOS.git
synced 2025-06-19 21:49:52 -07: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;
|
|
};
|
|
}
|