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,6 @@
{ config, pkgs, pkgs-stable, pkgs-fixed, lib, inputs, ...}: {
{ config, pkgs, pkgs-stable, pkgs-fixed, lib, inputs, ...}: let
laptop = false;
in {
imports = [
./secrets/secrets.nix
./modules/grub.nix
@ -19,6 +21,7 @@
inherit pkgs-fixed;
inherit lib;
inherit inputs;
inherit laptop;
name = "sweetbread";
fullname = "Sweet Bread";
})