Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
fix(system): remove ambigious system from nixosSystem
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAShelf committed May 7, 2024
1 parent af8d3f5 commit 72b9616
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions system/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 72b9616

Please sign in to comment.