Skip to content

Commit

Permalink
nixos flake: format with nixfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
uakci committed Sep 6, 2023
1 parent 2abd9df commit 4d2e938
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
{
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
let pkgs = import nixpkgs { inherit system; };
in {
devShells.default =
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs_latest
nodePackages_latest.typescript-language-server
nodePackages_latest.vscode-json-languageserver
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
nodejs_latest
nodePackages_latest.typescript-language-server
nodePackages_latest.vscode-json-languageserver

# Dependencies for building canvas
python3
pkg-config
pixman
cairo
pango
];
# Dependencies for building canvas
python3
pkg-config
pixman
cairo
pango
];

env.LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [ libuuid ]);
};
env.LD_LIBRARY_PATH =
pkgs.lib.makeLibraryPath (with pkgs; [ libuuid ]);
};
});
}

0 comments on commit 4d2e938

Please sign in to comment.