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