Skip to content

sodiboo/nixos-razer-nari

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

NixOS + Razer Nari

This flake contains a NixOS module that adds PipeWire profiles and udev rules allowing a Razer Nari headset to be recognized properly.

This does not work on other operating systems. This is not compatible with home-manager.

This only works with PipeWire + WirePlumber. This is the default audio stack on NixOS.

Usage

Add this repo to your system flake inputs and then import its default NixOS module.

{
  inputs = {
    nari.url = "github:sodiboo/nixos-razer-nari";
  };

  outputs = { nixpkgs, nari, ... }: {
    nixosConfigurations.my-system = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      modules = [
        nari.nixosModules.default
      ];
    };
  }
}

There are no other outputs. There are no additional options.

This flake is fairly small. You should be able to read and fully understand the flake.nix in this repo.

About

PipeWire profiles for Razer Nari in a nix flake

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages