quasar/flake.nix

22 lines
471 B
Nix
Raw Normal View History

2024-08-22 17:18:45 +00:00
{
description = "quasar system configuration";
2024-08-23 08:28:25 +00:00
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
docspell = {
url = "github:eikek/docspell";
inputs.nixpkgs.follows = "nixpkgs";
};
};
2024-08-22 17:18:45 +00:00
2024-08-23 08:28:25 +00:00
outputs = { self, nixpkgs, docspell, ... }: {
2024-08-22 17:18:45 +00:00
nixosConfigurations.quasar = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
2024-08-23 08:28:25 +00:00
docspell.nixosModules.default
2024-08-22 17:18:45 +00:00
];
};
};
}