don't hardcode system on foryog
This commit is contained in:
parent
d3a561f220
commit
5739ac294a
1 changed files with 4 additions and 3 deletions
|
@ -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]);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue