quasar/flake.nix

24 lines
539 B
Nix

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