feat: add dependencies to host in home-manager

This commit is contained in:
2025-04-13 18:22:04 +03:00
parent 28bf565203
commit 9cdd54c6e8
10 changed files with 38 additions and 14 deletions

View File

@ -1,4 +1,4 @@
{ pkgs, pkgs-stable, pkgs-fixed, lib, inputs, name, fullname ? name, ... }: {
{ config, pkgs, pkgs-stable, pkgs-fixed, lib, inputs, laptop, name, fullname ? name, ... }: {
imports = [
inputs.home-manager.nixosModules.home-manager {
home-manager = {
@ -27,6 +27,10 @@
inherit inputs;
inherit pkgs-stable;
inherit pkgs-fixed;
host = {
laptop = laptop;
name = config.networking.hostName;
};
};
};
}