summaryrefslogtreecommitdiff
path: root/templates/system-flake/flake.nix
blob: 6afe06fe9d8a11f3cc93677b4372ad84ee60afe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
    unstable.url = "github:nixos/nixpkgs/nixos-unstable";

    home-manager = {
      url = "github:nix-community/home-manager/release-24.11";
      inputs.nixpkgs.follows = "nixpkgs";
    };

    trivium = {
      url = "git+https://git.posixlycorrect.com/deepState/trivionomicon.git";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = flakes @ {
    self,
    nixpkgs,
    unstable,
    home-manager,
    trivium,
  }:
    trivium.lib.mkSystemFlake {
      system = "x86_64-linux";
      inherit flakes;
    };
}