Fix some small updates

This commit is contained in:
2025-03-14 22:04:21 +01:00
parent a98e3a4d42
commit 670c5e99b0
62 changed files with 246 additions and 265 deletions

25
flake.nix Normal file
View File

@ -0,0 +1,25 @@
{
description = "styrdokument flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/x86_64-linux";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
};
outputs = inputs:
let mkFlake = inputs.flake-parts.lib.mkFlake { inherit inputs; };
in mkFlake ({ inputs, ... }: {
systems = import inputs.systems;
perSystem = { self, inputs, lib, pkgs, ... }:
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
hugo
];
};
};
});
}