Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 785 Bytes

README.md

File metadata and controls

35 lines (27 loc) · 785 Bytes

sn0wm1x

SN0WM1X Hardware

About

WIP, which may eventually be contributed to NixOS Hardware.

Profiles

Usage

{
  description = "NixOS configuration with flakes";
  inputs.sn0wm1x-hardware.url = "github:sn0wm1x/hw";

  outputs = { self, nixpkgs, sn0wm1x-hardware }: {
    # replace <your-hostname> with your actual hostname
    nixosConfigurations.<your-hostname> = nixpkgs.lib.nixosSystem {
      # ...
      modules = [
        # ...
        # add your model from this list: https://github.com/sn0wm1x/hw/blob/main/flake.nix
        sn0wm1x-hardware.nixosModules.oneplus-enchilada
      ];
    };
  };
}