summaryrefslogtreecommitdiff
path: root/flake.nix
blob: 82dc5b17f8564110ff1d8a0c81044a5115ad5d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  description = "Run Ann Server as a systemd service";
  inputs.nixpkgs.url = "github:NixOS/nixpkgs?ref=nixpkgs-unstable";
  inputs.ann.url = "git+https://git.sr.ht/~marcc/ann_bloop";
  

  outputs = {self,nixpkgs, ann, ...}@inputs: {
    nixosConfigurations.nix = nixpkgs.lib.nixosSystem {
      specialArgs = {inherit inputs;};
      system = "x86_64-linux";
      modules = [
        ./configuration.nix 
      ];
    };
  };
}