Some formatting changes after PR

This commit is contained in:
2024-12-06 13:38:06 +02:00
parent 48380943b0
commit 41217ab34b
2 changed files with 9 additions and 10 deletions

View File

@@ -12,15 +12,14 @@
ghostty.url = "git+ssh://git@github.com/ghostty-org/ghostty";
};
outputs = { self, nixpkgs, ... }@inputs:
{
nixosConfigurations = {
laptop-nixos = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
./hosts/laptop-nixos/configuration.nix
];
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations = {
laptop-nixos = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
./hosts/laptop-nixos/configuration.nix
];
};
};
};
}

View File

@@ -94,11 +94,11 @@
# List packages installed in system profile. Use for apps that need sudo.
environment.systemPackages = with pkgs; [
inputs.ghostty.packages.x86_64-linux.default
glib-networking
openssl
clang
clang-tools
inputs.ghostty.packages.x86_64-linux.default
];
# Enable dynamic linking of applications that are not in nixpkgs (for vim LSPs for example).