Rename variables

This commit is contained in:
Oliver Davies 2024-02-29 08:26:04 +00:00
parent addad268e5
commit 2f6977bb82
2 changed files with 7 additions and 7 deletions
lib/nixos

View file

@ -9,7 +9,7 @@
hostname,
}: let
configuration = import ./configuration.nix {inherit desktop hostname inputs pkgs system;};
hardware-configuration = import ./hardware-configuration.nix;
hardwareConfiguration = import ./hardware-configuration.nix;
in
inputs.nixpkgs.lib.nixosSystem {
modules = [
@ -24,6 +24,6 @@ in
}
configuration
hardware-configuration
hardwareConfiguration
];
}