mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
Gabriel Arazas
7e91c01de6
Even if the home-manager test is pretty useless with the new Nix CLI since it only works on `nix-shell` but could be handy at some point.
9 lines
165 B
Nix
9 lines
165 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
{
|
|
lib = import ./lib { inherit pkgs; };
|
|
modules = {
|
|
home-manager = import ./modules/home-manager { inherit pkgs; };
|
|
};
|
|
}
|