3 Commits

Author SHA1 Message Date
65118b6abe flake.lock: bump 2026-01-09 06:12:05 +09:00
75226f8314 flake.nix: system -> stdenv.hostPlatform.system 2026-01-09 06:11:43 +09:00
1a4676d85d docs/getting-started: fix warning block 2026-01-07 22:50:43 +09:00
3 changed files with 5 additions and 5 deletions

View File

@@ -29,7 +29,7 @@ You should now be able to access the site at [http://localhost:1080](http://loca
Sometimes it is useful to completely reset the state of the project, deleting the data, redownloading dependencies, etc. You can do this by running `./scripts/reset.sh`. Be careful, as this will delete all data in the database! Sometimes it is useful to completely reset the state of the project, deleting the data, redownloading dependencies, etc. You can do this by running `./scripts/reset.sh`. Be careful, as this will delete all data in the database!
> [!WARN] > [!WARNING]
> Even when resetting the project with the reset script, there are some situation where you need to clear your cookies or your browser cache to get a clean state. > Even when resetting the project with the reset script, there are some situation where you need to clear your cookies or your browser cache to get a clean state.
> How to do this varies between browsers, so please refer to your browser's documentation for instructions. > How to do this varies between browsers, so please refer to your browser's documentation for instructions.

6
flake.lock generated
View File

@@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1767026758, "lastModified": 1767364772,
"narHash": "sha256-7fsac/f7nh/VaKJ/qm3I338+wAJa/3J57cOGpXi0Sbg=", "narHash": "sha256-fFUnEYMla8b7UKjijLnMe+oVFOz6HjijGGNS1l7dYaQ=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "346dd96ad74dc4457a9db9de4f4f57dab2e5731d", "rev": "16c7794d0a28b5a37904d55bcca36003b9109aaa",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -22,7 +22,7 @@
}); });
overlays.default = final: prev: { overlays.default = final: prev: {
inherit (self.packages.${final.system}) pvv-nettsiden; inherit (self.packages.${final.stdenv.hostPlatform.system}) pvv-nettsiden;
formats = prev.formats // { formats = prev.formats // {
php = import ./nix/php-generator.nix { pkgs = prev; lib = prev.lib; }; php = import ./nix/php-generator.nix { pkgs = prev; lib = prev.lib; };
}; };