docspell testing

This commit is contained in:
Khaïs COLIN 2024-08-23 08:28:25 +00:00
parent c2e4e7f2a3
commit d5ac52bd84
4 changed files with 182 additions and 4 deletions

View file

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