Compare commits
6 Commits
6ee42add7c
...
5e5c0c1e87
Author | SHA1 | Date | |
---|---|---|---|
5e5c0c1e87 | |||
c7a043c594 | |||
8dcfb652b6 | |||
275142e3d7 | |||
22fdb0e6f3 | |||
af2d1c52fd |
@@ -1,2 +1,3 @@
|
||||
title: rpqt's web corner
|
||||
layout: layouts/main.vto
|
||||
website_source: https://git.turifer.dev/rpqt/corner
|
||||
|
@@ -30,8 +30,7 @@
|
||||
</main>
|
||||
<footer>
|
||||
<div>© 2025 Romain Paquet</div>
|
||||
<div>Built with <a href="https://lume.land">Lume</a></div>
|
||||
<div>Hosted on <a href="https://srht.site">SourceHut Pages</a></div>
|
||||
<div>Built with <a href="https://lume.land">lume</a> • <a href="{{ website_source }}">Source</a></div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
21
flake.lock
generated
21
flake.lock
generated
@@ -1,5 +1,25 @@
|
||||
{
|
||||
"nodes": {
|
||||
"flake-parts": {
|
||||
"inputs": {
|
||||
"nixpkgs-lib": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1756770412,
|
||||
"narHash": "sha256-+uWLQZccFHwqpGqr2Yt5VsW/PbeJVTn9Dk6SHWhNRPw=",
|
||||
"owner": "hercules-ci",
|
||||
"repo": "flake-parts",
|
||||
"rev": "4524271976b625a4a605beefd893f270620fd751",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "hercules-ci",
|
||||
"repo": "flake-parts",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1746904237,
|
||||
@@ -18,6 +38,7 @@
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"flake-parts": "flake-parts",
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
|
27
flake.nix
27
flake.nix
@@ -1,20 +1,29 @@
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
|
||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ nixpkgs, ... }:
|
||||
inputs@{ flake-parts, ... }:
|
||||
flake-parts.lib.mkFlake
|
||||
{
|
||||
devShells =
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
in
|
||||
inherit inputs;
|
||||
}
|
||||
{
|
||||
${system}.default = pkgs.mkShellNoCC {
|
||||
packages = with pkgs; [
|
||||
deno
|
||||
systems = [
|
||||
"x86_64-linux"
|
||||
"aarch64-linux"
|
||||
];
|
||||
|
||||
perSystem =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
devShells.default = pkgs.mkShellNoCC {
|
||||
packages = [
|
||||
pkgs.deno
|
||||
pkgs.nil # Nix language server
|
||||
pkgs.nixfmt-rfc-style
|
||||
];
|
||||
|
5
now.md
Normal file
5
now.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# What I'm up to
|
||||
|
||||
- I am doing an exchange at [AGH], in Kraków 🇵🇱, from October 2025 to February 2026.
|
||||
|
||||
[AGH]: https://www.agh.edu.pl/en/
|
@@ -1,6 +1,9 @@
|
||||
## Forges
|
||||
|
||||
- [My Gitea instance](https://git.turifer.dev/rpqt)
|
||||
- [Radicle node](https://app.radicle.xyz/nodes/radicle.rpqt.fr)
|
||||
- [SourceHut](https://git.sr.ht/~rpqt)
|
||||
- [GitHub](https://github.com/rpqt)
|
||||
- [Codeberg](https://codeberg.org/rpqt)
|
||||
- [GitLab](https://gitlab.com/rpqt)
|
||||
- [GRICAD GitLab instance](https://gricad-gitlab.univ-grenoble-alpes.fr/paquetr)
|
||||
|
Reference in New Issue
Block a user