fix(system): remove ambigious system from nixosSystem

This commit is contained in:
NotAShelf 2024-05-07 14:03:53 +03:00
parent af8d3f5deb
commit 72b9616f87
Failed to generate hash of commit

View file

@ -11,11 +11,13 @@
in in
{ {
nixosConfigurations.${hostName} = nixpkgs.lib.nixosSystem { nixosConfigurations.${hostName} = nixpkgs.lib.nixosSystem {
inherit system;
modules = [ modules = [
./configuration.nix ./configuration.nix
{ networking.hostName = hostName; } {
networking.hostName = hostName;
nixpkgs.hostPlatform = system;
}
]; ];
specialArgs = { specialArgs = {