diff options
author | Ben Sima <ben@bsima.me> | 2024-10-16 13:40:40 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-12-21 10:06:44 -0500 |
commit | b4c8e2581c82151e8dd6fd1f9951568947e71530 (patch) | |
tree | 4e1767f8e0725f5a533346e4dee460e396dbd2dc /Biz/Dev/Beryllium | |
parent | c34298f8e7174168ee13582c5467ec6e6c7a6215 (diff) |
Enable the zsa voyager keyboard
The voyager needed some special udev rules, and a program to do the flashing. I
also made the barrier port explicit by moving to Ports.nix.
Diffstat (limited to 'Biz/Dev/Beryllium')
-rw-r--r-- | Biz/Dev/Beryllium/Configuration.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Biz/Dev/Beryllium/Configuration.nix b/Biz/Dev/Beryllium/Configuration.nix index 8daa124..b898764 100644 --- a/Biz/Dev/Beryllium/Configuration.nix +++ b/Biz/Dev/Beryllium/Configuration.nix @@ -1,6 +1,7 @@ { pkgs, ... }: -{ +let ports = import ../../Cloud/Ports.nix; +in { imports = [ # Include the results of the hardware scan. ./Hardware.nix ]; @@ -98,12 +99,14 @@ linuxPackages.v4l2loopback nvtop keymapp + wally-cli + # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + # wget ]; systemd.services.NetworkManager-wait-online.enable = false; networking.firewall.allowedTCPPorts = [ ports.barrier ]; - # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave |