Skip to content

Commit 1e81af1

Browse files
committed
feat(home: packages: more-games): add etterna
Signed-off-by: tsrk. <[email protected]>
1 parent 442abdf commit 1e81af1

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

flake.nix

+1-4
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,7 @@
104104
allOverlays = self: super:
105105
builtins.attrValues
106106
(builtins.mapAttrs (_: overlay: overlay self super) baseOverlays);
107-
commonArgs = {
108-
inherit lib self inputs;
109-
pkgsSet = pkgSet system;
110-
};
107+
commonArgs = { inherit lib self inputs pkgSet; };
111108
in {
112109
nixosModules = (import ./modules/system commonArgs)
113110
// (import ./profiles/system commonArgs) // {

modules/home/packages/more-games.nix

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44

55
# SPDX-License-Identifier: MIT
66

7-
{ inputs, self, ... }:
7+
{ inputs, self, pkgSet, ... }:
88

99
{ lib, config, pkgs, ... }:
1010

1111
let
12+
inherit (pkgSet pkgs.system) pkgsUnstable;
1213
tsrkPkgs = self.packages.${pkgs.system};
1314
gaming = inputs.nix-gaming.packages.${pkgs.system};
1415
in {
@@ -30,6 +31,7 @@ in {
3031
pkgs.prismlauncher
3132
tsrkPkgs.rewind
3233
pkgs.lunar-client
34+
pkgsUnstable.etterna # TODO: at 25.05 use pkgs
3335
];
3436
};
3537
}

0 commit comments

Comments
 (0)