Compare commits

..

3 Commits

Author SHA1 Message Date
f02bfec2c0 Update deps. 2025-01-19 16:53:11 +00:00
5071000a6c Ignore direnv state. 2025-01-19 16:52:55 +00:00
22148060e4 Setup devshell. 2025-01-19 16:52:36 +00:00
5 changed files with 769 additions and 783 deletions

1
.envrc Normal file
View File

@@ -0,0 +1 @@
use flake

2
.gitignore vendored
View File

@@ -12,3 +12,5 @@ keys
!web/modules !web/modules
web/modules/* web/modules/*
!web/modules/custom !web/modules/custom
.direnv/

1505
composer.lock generated

File diff suppressed because it is too large Load Diff

27
flake.lock generated Normal file
View File

@@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1737062831,
"narHash": "sha256-Tbk1MZbtV2s5aG+iM99U8FqwxU/YNArMcWAv6clcsBc=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "5df43628fdf08d642be8ba5b3625a6c70731c19c",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

17
flake.nix Normal file
View File

@@ -0,0 +1,17 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
php84Packages.composer
];
};
};
}