feat: switch to camasca

This commit is contained in:
uku 2024-08-29 01:10:47 +02:00
parent ffd73d8e6a
commit bf806a2e63
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
12 changed files with 46 additions and 279 deletions

View file

@ -12,7 +12,6 @@
imports = [
./systems
./exprs
];
perSystem = {
@ -22,12 +21,10 @@
}: {
apps = (nixinate.nixinate.${system} self).nixinate;
devShells.default = pkgs.mkShellNoCC {
packages = with pkgs; [
just
statix
];
};
devShells.default = with pkgs;
mkShellNoCC {
packages = [just statix];
};
formatter = pkgs.alejandra;
};
@ -36,6 +33,12 @@
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
camasca = {
url = "github:uku3lig/camasca";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
agenix = {
url = "github:uku3lig/agenix";
inputs.nixpkgs.follows = "nixpkgs";