blob: 63a448fe55439a8f71eb9ef321893c494414b1de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
me,
lib,
auxiliaryPkgs,
...
}:
assert lib.assertMsg (
me.system == "aarch64-linux"
) "arm module included on non-arm (${me.system}) architecture.";
{
# disable things that just don't work on arm.
programs.steam.enable = lib.mkForce false;
# non-machine specific arm package selection.
# used to include replacements for necessary programs with no
# default support for aarch64. (i.e. discord)
environment.systemPackages = with auxiliaryPkgs; [
equibop # discord
];
}
|