Add back Steam Deck and add experimental unstable

This commit is contained in:
Jimbo 2024-10-21 02:12:30 -04:00
parent d4f132616e
commit 14aad2871f
18 changed files with 282 additions and 41 deletions

View file

@ -1,8 +1,8 @@
{ unstable, ... }:
{ pkgs, ... }:
{
nixpkgs.overlays = [
(import ./unstable { inherit unstable; })
(final: _prev: import ./packages { pkgs = final; })
(import ./mpv)
imports = [
./unstable
./packages
./mpv
];
}

View file

@ -1,9 +1,14 @@
(self: super: {
mpv = super.mpv.override {
scripts = with self.mpvScripts; [
mpris
sponsorblock
thumbnail
];
};
})
{ unstable, ... }:
{
nixpkgs.overlays = [
(self: super: {
mpv = super.mpv.override {
scripts = with self.mpvScripts; [
mpris
sponsorblock
thumbnail
];
};
})
];
}

View file

@ -1,5 +1,9 @@
{ pkgs, ... }:
{
xash3d = pkgs.callPackage ./xash3d {};
hlsdk = pkgs.callPackage ./hlsdk {};
nixpkgs.overlays = [
(final: _prev: {
xash3d = pkgs.callPackage ./xash3d {};
hlsdk = pkgs.callPackage ./hlsdk {};
})
];
}

View file

@ -1,7 +1,11 @@
{ unstable, ... }:
(final: prev: {
unstable = import unstable {
system = final.system;
config.allowUnfree = true;
};
})
{
nixpkgs.overlays = [
(final: prev: {
unstable = import unstable {
system = final.system;
config.allowUnfree = true;
};
})
];
}