Add weylus

This commit is contained in:
Nathan McCarty 2023-06-28 19:40:04 -04:00
parent 4bc1f17f80
commit e9848ee9d0
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
3 changed files with 7 additions and 3 deletions

View File

@ -38,6 +38,8 @@ in lib.mkMerge [
pkgs.libsForQt5.qt5ct pkgs.libsForQt5.qt5ct
materia-theme materia-theme
materia-kde-theme materia-kde-theme
# Weylus for using the tablet
weylus
]; ];
# Bluetooth applet # Bluetooth applet

View File

@ -9,6 +9,8 @@ in {
gimp-with-plugins gimp-with-plugins
# Krita for drawing # Krita for drawing
unstable.krita unstable.krita
# Xournal for recording notes
xournalpp
# Pinta for basic image editing # Pinta for basic image editing
unstable.pinta unstable.pinta
# Command line tools for image conversion and handling # Command line tools for image conversion and handling

View File

@ -73,10 +73,10 @@ in {
useDHCP = false; useDHCP = false;
interfaces.enp6s0.useDHCP = true; interfaces.enp6s0.useDHCP = true;
nat.externalInterface = "enp6s0"; nat.externalInterface = "enp6s0";
# Open ports for soulseek # Open ports for soulseek and weylus
firewall = { firewall = {
allowedTCPPorts = [ 61377 ]; allowedTCPPorts = [ 61377 1701 9001 ];
allowedUDPPorts = [ 61377 ]; allowedUDPPorts = [ 61377 1701 9001 ];
}; };
}; };