No description
Find a file
Rein d7a948011c
Some checks failed
Deploy All / build (push) Has been cancelled
feat: man page for patch-rocksmith
2025-12-23 17:38:37 +01:00
.github refactor: remove unnecessary step in build workflow 2025-12-21 19:22:52 +01:00
modules feat: cache and ci workflow 2025-12-11 23:53:51 +01:00
pkgs feat: man page for patch-rocksmith 2025-12-23 17:38:37 +01:00
.gitignore Initial commit 2025-09-11 18:04:12 +02:00
default.nix init 2025-09-11 20:11:46 +02:00
flake.lock chore: bump lock 2025-12-23 17:31:29 +01:00
flake.nix Revert "feat: cdlc installer" 2025-12-21 22:41:03 +01:00
LICENSE Initial commit 2025-09-11 18:04:12 +02:00
README.md feat: cache and ci workflow 2025-12-11 23:53:51 +01:00

NixOS Rocksmith 🎸

Simplify the setup of Rocksmith 2014 on NixOS!

❄️ Flake

In order to use this, you need to include it in your flake's inputs like this:

# flake.nix
{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";

    nixos-rocksmith = {
      url = "github:re1n0/nixos-rocksmith";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = {self, nixpkgs, ...}@inputs: {
    nixosConfigurations.default = nixpkgs.lib.nixosSystem {
      specialArgs = {inherit inputs;};
      modules = [
        inputs.nixos-rocksmith.nixosModules.default
        ./configuration.nix
      ];
    };
  };
}

⚙ Example Configuration

# configuration.nix
{
  # ...

  # Add user to `audio` and `rtkit` groups.
  users.users.<username>.extraGroups = [ "audio" "rtkit" ];

  programs.steam = {
    enable = true;
    rocksmithPatch.enable = true;
  };

  # ...
}

🔍 Further Instructions

Tips for running Rocksmith 2014 on Linux are available in linux_rocksmith repo. Go check them out for potential troubleshooting or setting Launch Options on Steam.