9 lines
117 B
Nix
9 lines
117 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
./configs/home.full.nix
|
||
|
];
|
||
|
|
||
|
programs.home-manager.enable = true;
|
||
|
}
|