diff options
| author | Amir Saeid <amir@glgdgt.com> | 2026-03-08 21:55:48 +0000 |
|---|---|---|
| committer | Amir Saeid <amir@glgdgt.com> | 2026-03-08 21:55:48 +0000 |
| commit | 9d6cd1464952a7c202724a95fe18813fd0310c60 (patch) | |
| tree | be9a7fa6e68f70e3abd53fee83eea2dc9cba4908 /flake.nix | |
| parent | 476d3ae96a028731368c673f1715bf6e98c3fc7c (diff) | |
Add nixGL
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -12,9 +12,12 @@ flake-utils = { url = "github:numtide/flake-utils"; }; + nixgl = { + url = "github:nix-community/nixGL"; + }; }; - outputs = { self, nixpkgs, home-manager, unstable, flake-utils, ... }: + outputs = { self, nixpkgs, home-manager, unstable, flake-utils, nixgl, ... }: let mkExtraArgs = system: { unstablePkgs = import unstable { @@ -34,6 +37,7 @@ mkHostConfig = { hostname, system ? "aarch64-darwin" }: { pkgs = import nixpkgs { inherit system; + overlays = [ nixgl.overlay ]; config = { allowUnfree = false; }; |
