quasar/flake.nix
2024-08-23 08:28:25 +00:00

21 lines
471 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
];
};
};
}