blob: 28e0644160022a63a6fc62ec782204190d0df638 (
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,
pkgs,
...
}:
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 pkgs; [
vesktop
];
}
|