diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-06-06 19:58:08 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-06-06 19:58:08 +0200 |
| commit | be3eab6f09aa7c8f615bbc129dc4bf2bada7dbc7 (patch) | |
| tree | 65c5ecab11c1654ea85ae96ff9c901a438b9dfc7 /flake.nix | |
| parent | f0c954201c339e78742a1d91ac31b61c08cf37d8 (diff) | |
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,13 +18,13 @@ installPhase = "mkdir -p $out/bin; install -t $out/bin wofi-pass"; }; - overlays.default = final: prev: { inherit (self.packages.${prev.system}) wofi-pass; }; + overlays.default = final: prev: { inherit (self.packages.${prev.stenv.hostPlatform.system}) wofi-pass; }; nixosModules.default = { pkgs, ... }: { config = { - environment.systemPackages = [ self.packages.${pkgs.system}.default ]; + environment.systemPackages = [ self.packages.${pkgs.stdenv.hostPlatform.system}.default ]; }; }; }; |