system/outputs/system.nix

12 lines
178 B
Nix
Raw Normal View History

2022-08-30 00:17:21 +03:00
{ nixpkgs, system }:
{
systemHome = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
../system/configuration.nix
../system/machine/home
];
};
}