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
{
nixosConfigurations.${hostName} = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./configuration.nix
{ networking.hostName = hostName; }
{
networking.hostName = hostName;
nixpkgs.hostPlatform = system;
}
];
specialArgs = {