[NixOS] Handle arm-incompatible inline

This commit is contained in:
2023-08-19 14:55:09 -06:00
parent 654137f653
commit 7491191f8c
5 changed files with 19 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, config, ... }:
{
programs.direnv = {
enable = true;
@@ -39,10 +39,6 @@
# Ruby
ruby
# purescript
purescript
spago
# python
poetry
black
@@ -58,5 +54,9 @@
# nix
nixd
nil
];
] ++ (if config.system.platform.system == "x86_64-linux" then with pkgs; [
# purescript
purescript
spago
] else []);
}