Skip to content

Commit

Permalink
fix: styling and syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarrio committed Dec 3, 2023
1 parent 347964f commit 5ebbda1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion nixos/_mixins/desktop/vscode.nix
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ let
};
in
{
imports = []
imports = [ ]
# ++ lib.optional g.nix ../console/nix-lsp.nix
++ lib.optional codeServer.enable ../services/vscode-server.nix
;
Expand Down
2 changes: 1 addition & 1 deletion nixos/_mixins/services/vscode-server.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
];

services.vscode-server.enable = true;
}
}
11 changes: 5 additions & 6 deletions nixos/server/tk1/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Nvidia Tegra K1 Devboard

{ inputs, lib, pkgs, ... }:
{ lib, pkgs, ... }:
{
imports = [
../_mixins/virt
Expand All @@ -22,9 +22,8 @@
address = "192.168.1.185";
prefixLength = 24;
}];
useDHCP = lib.mkForce false

};
useDHCP = lib.mkForce false;
};

nixpkgs.hostPlatform = lib.mkDefault "armv7l-linux";
}
nixpkgs.hostPlatform = lib.mkDefault "armv7l-linux";
}

0 comments on commit 5ebbda1

Please sign in to comment.