summary refs log tree commit diff stats
path: root/flake.nix
blob: 16f49fb21148382bc32eb568c51f89c5736575f8 (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 = [./configuration.nix];
    };
  };
}