chore: remove unused docspell setup

This commit is contained in:
Khaïs COLIN 2024-08-29 15:36:05 +02:00
parent ff8eee35b1
commit b30e6e362d
7 changed files with 3 additions and 194 deletions

View file

@ -3,21 +3,13 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
docspell = {
url = "github:eikek/docspell";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, docspell, ... }: {
outputs = { self, nixpkgs, ... }: {
nixosConfigurations.quasar = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
docspell.nixosModules.default
{
_module.args = { inherit docspell; };
}
];
};
};