summary refs log tree commit diff stats
path: root/flake.nix
blob: 37a7906bc88e795e37e49d8dbc65c26f5599ef3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{
  outputs = {
    self,
    nixpkgs,
  }: {
    nixosConfigurations.thinklappi = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      modules = [./sysconf/thinklappi.nix];
    };
  };
}