fix: NixOS | clean up config arguments

This commit is contained in:
2025-01-31 23:04:43 +05:00
parent 820624ad7e
commit 214cf14e0d
2 changed files with 2 additions and 9 deletions

View File

@@ -36,9 +36,7 @@
]; ];
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
meta = { hostname = host;
hostname = host;
};
}; };
}; };
}; };

View File

@@ -2,14 +2,9 @@
# your system. Help is available in the configuration.nix(5) man page # your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ inputs, hostname, pkgs, ... }: { inputs, pkgs, hostname, ... }:
{ {
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;