aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: d7154c2d2dc32dc1f7e3d33ee128a5cb174f98b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    nixos-hardware.url = "github:NixOS/nixos-hardware";
  };

  outputs = { self, nixpkgs, nixos-hardware, ... }: {
    nixosConfigurations.bacchus = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      modules = [
        "${nixos-hardware}/lenovo/ideapad"
        ./configuration.nix
      ];
    };
  };
}