diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-05-20 13:10:43 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-05-20 13:10:43 -0700 |
commit | e8aa64d40d2ffaa816c9ac328e77110765304653 (patch) | |
tree | 6e30bb66e29caa4d1eea61342949ccc388075629 /hosts/common/optional/services/dhcp.nix | |
parent | 0bf5f51f35ad51944e2bb9255e83eb2c221211c4 (diff) | |
download | nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar.gz nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar.bz2 nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar.lz nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar.xz nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar.zst nix-e8aa64d40d2ffaa816c9ac328e77110765304653.zip |
Update environment.systemPackages syntax
Diffstat (limited to '')
-rw-r--r-- | hosts/common/optional/services/dhcp.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hosts/common/optional/services/dhcp.nix b/hosts/common/optional/services/dhcp.nix index 3eed193..36f8bdb 100644 --- a/hosts/common/optional/services/dhcp.nix +++ b/hosts/common/optional/services/dhcp.nix @@ -7,10 +7,10 @@ "tftp/undionly.kpxe".source = "${pkgs.ipxe}/undionly.kpxe"; }; - systemPackages = with pkgs; [ - ipxe - tftp-hpa - wol + systemPackages = [ + pkgs.ipxe + pkgs.tftp-hpa + pkgs.wol ]; }; |