Pass inputs around instead of each individual input

This commit is contained in:
Gene Liverman 2024-12-04 21:39:03 -05:00
parent e1d4cddda0
commit eead479245
25 changed files with 27 additions and 29 deletions

View file

@ -1,4 +1,4 @@
{ compose2nix, config, pkgs, username, ... }: let
{ inputs, config, pkgs, username, ... }: let
http_port = 80;
https_port = 443;
home_domain = "home.technicalissues.us";
@ -29,7 +29,7 @@ in {
};
environment.systemPackages = with pkgs; [
compose2nix.packages.${pkgs.system}.default
inputs.compose2nix.packages.${pkgs.system}.default
docker-compose
intel-gpu-tools
jellyfin

View file

@ -1,7 +1,7 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ config, lib, modulesPath, ... }:
{
imports =