don't hardcode system on foryog

This commit is contained in:
Cyryl Płotnicki 2023-12-03 13:52:12 +00:00
parent d3a561f220
commit 5739ac294a

View file

@ -3,6 +3,7 @@
pkgs, pkgs,
inputs, inputs,
lib, lib,
system,
... ...
}: { }: {
networking.hostName = "foryog"; networking.hostName = "foryog";
@ -78,9 +79,9 @@
../../home-manager/programs/kitty.nix ../../home-manager/programs/kitty.nix
../../home-manager/programs/helix.nix ../../home-manager/programs/helix.nix
]; ];
home.packages = with inputs.nixpkgs-master.legacyPackages."x86_64-linux"; home.packages =
[bisq-desktop] (with inputs.nixpkgs-master.legacyPackages."${system}"; [bisq-desktop])
++ (with pkgs; [lutris]) ++ (with pkgs; [lutris])
++ (with inputs.endless-sky.legacyPackages."x86_64-linux"; [endless-sky]); ++ (with inputs.endless-sky.legacyPackages."${system}"; [endless-sky]);
}; };
} }