aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/services/dhcp.nix
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2025-05-20 13:10:43 -0700
committerMark Nipper <nipsy@bitgnome.net>2025-05-20 13:10:43 -0700
commite8aa64d40d2ffaa816c9ac328e77110765304653 (patch)
tree6e30bb66e29caa4d1eea61342949ccc388075629 /hosts/common/optional/services/dhcp.nix
parent0bf5f51f35ad51944e2bb9255e83eb2c221211c4 (diff)
downloadnix-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 'hosts/common/optional/services/dhcp.nix')
-rw-r--r--hosts/common/optional/services/dhcp.nix8
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
];
};