diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-07-15 12:45:02 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-07-15 12:45:02 +0300 |
commit | a75acfb7ef640c2367d4547b0f479e7acaad9017 (patch) | |
tree | 253afd11564269b1812c96bf3518a8aab9d4597c /lib | |
parent | 2023-07-13 (diff) |
2023-07-15
Diffstat (limited to '')
-rw-r--r-- | lib/my.nix | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/my.nix b/lib/my.nix index a7f65ec..95b89cf 100644 --- a/lib/my.nix +++ b/lib/my.nix @@ -25,12 +25,7 @@ with lib; system = mkOption { description = "The machine's system."; - type = nullOr (enum [ - "aarch64-darwin" - "aarch64-linux" - "x86_64-darwin" - "x86_64-linux" - ]); + type = nullOr (enum platforms.all); default = null; }; |