Add support for flashing ergodox

This commit is contained in:
Nathan McCarty 2022-03-28 15:14:56 -04:00
parent e8c157bde2
commit af4c7419c3
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
2 changed files with 4 additions and 1 deletions

View File

@ -45,6 +45,7 @@
## Left over uncategorized packages ## Left over uncategorized packages
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
unstable.firefox-beta-bin unstable.firefox-beta-bin
wally-cli
]; ];
# Enable firewall and pass some ports # Enable firewall and pass some ports
@ -53,4 +54,6 @@
allowedTCPPorts = [ 61377 ]; allowedTCPPorts = [ 61377 ];
allowedUDPPorts = [ 61377 ]; allowedUDPPorts = [ 61377 ];
}; };
# Enable ergodox udev rules
hardware.keyboard.zsa.enable = true;
} }

View File

@ -18,7 +18,7 @@
isNormalUser = true; isNormalUser = true;
home = "/home/nathan"; home = "/home/nathan";
description = "Nathan McCarty"; description = "Nathan McCarty";
extraGroups = [ "wheel" "networkmanager" "audio" "docker" "libvirtd" "uinput" "adbusers" ]; extraGroups = [ "wheel" "networkmanager" "audio" "docker" "libvirtd" "uinput" "adbusers" "plugdev" ];
hashedPassword = "$6$ShBAPGwzKZuB7eEv$cbb3erUqtVGFo/Vux9UwT2NkbVG9VGCxJxPiZFYL0DIc3t4GpYxjkM0M7fFnh.6V8MoSKLM/TvOtzdWbYwI58."; hashedPassword = "$6$ShBAPGwzKZuB7eEv$cbb3erUqtVGFo/Vux9UwT2NkbVG9VGCxJxPiZFYL0DIc3t4GpYxjkM0M7fFnh.6V8MoSKLM/TvOtzdWbYwI58.";
shell = unstable.fish; shell = unstable.fish;
}; };