mirror of
https://github.com/gogrlx/docs.grlx.dev.git
synced 2026-04-17 10:45:01 -07:00
chore: tooling updates
This commit is contained in:
@@ -15,15 +15,15 @@
|
|||||||
|
|
||||||
];
|
];
|
||||||
systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
|
systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
|
||||||
perSystem = { config, self', inputs', pkgs, system, ... }: {
|
perSystem = { config, self', inputs', pkgs, system, ... }:
|
||||||
|
{
|
||||||
# Per-system attributes can be defined here. The self' and inputs'
|
# Per-system attributes can be defined here. The self' and inputs'
|
||||||
# module parameters provide easy access to attributes of the same
|
# module parameters provide easy access to attributes of the same
|
||||||
# system.
|
# system.
|
||||||
|
|
||||||
# Equivalent to inputs'.nixpkgs.legacyPackages.hello;
|
# Equivalent to inputs'.nixpkgs.legacyPackages.hello;
|
||||||
# packages.default = pkgs.hello;
|
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
buildInputs = [ pkgs.hugo pkgs.yarn pkgs.go_1_21 ];
|
nativeBuildInputs = [ pkgs.hugo pkgs.yarn pkgs.go_1_21 pkgs.nodePackages.postcss pkgs.nodePackages.postcss-cli pkgs.nodejs_18 pkgs.nodePackages.autoprefixer];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
flake = {
|
flake = {
|
||||||
|
|||||||
@@ -1,9 +1,16 @@
|
|||||||
baseURL = 'https://example.org/'
|
baseURL = 'https://example.org/'
|
||||||
languageCode = 'en-us'
|
languageCode = 'en-us'
|
||||||
title = 'My New Hugo Site'
|
title = 'grlx.dev'
|
||||||
[module]
|
[module]
|
||||||
proxy = "direct"
|
proxy = "direct"
|
||||||
[[module.imports]]
|
[[module.imports]]
|
||||||
path = "github.com/google/docsy"
|
path = "github.com/google/docsy"
|
||||||
[[module.imports]]
|
[[module.imports]]
|
||||||
path = "github.com/google/docsy/dependencies"
|
path = "github.com/google/docsy/dependencies"
|
||||||
|
[markup]
|
||||||
|
[markup.goldmark]
|
||||||
|
[markup.goldmark.renderer]
|
||||||
|
unsafe = true
|
||||||
|
[markup.highlight]
|
||||||
|
# See a complete list of available styles at https://xyproto.github.io/splash/docs/all.html
|
||||||
|
style = "catppuccin-latte"
|
||||||
|
|||||||
7
package.json
Normal file
7
package.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"autoprefixer": "^10.4.16",
|
||||||
|
"postcss": "^8.4.31",
|
||||||
|
"postcss-cli": "^10.1.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user