9 lines
165 B
Nix
9 lines
165 B
Nix
# Home Manager default nixfiles entrypoint. Currently this file does nothing
|
|
# besides import default.nix
|
|
{ pkgs, config, lib, ... }:
|
|
{
|
|
imports = [
|
|
./.
|
|
];
|
|
}
|