6 lines
216 B
Nix
6 lines
216 B
Nix
{ pkgs, unstable, nixpkgs, nixos-unstable, home-manager, ...}:
|
|
rec {
|
|
user = import ./user.nix { inherit pkgs; };
|
|
host = import ./host.nix { inherit pkgs nixpkgs unstable nixos-unstable home-manager user; };
|
|
}
|