Compare commits
17 Commits
84aeb9a110
...
9c7a095115
| Author | SHA1 | Date | |
|---|---|---|---|
| 9c7a095115 | |||
| 5245b79974 | |||
| df6f3e9ac2 | |||
| 093eae9f30 | |||
| a92817279b | |||
| ac6d20b2d6 | |||
| d42b0535f3 | |||
| 2cff6221a2 | |||
| a9d9b46a0d | |||
| 8b9c9b35df | |||
| 771ce581ec | |||
| 69ebe72091 | |||
| a00d45d979 | |||
| a663d12e15 | |||
| 80cbdf551f | |||
| e3f2231e04 | |||
| cbea2c3b7e |
+361
-348
File diff suppressed because it is too large
Load Diff
@@ -819,6 +819,9 @@ in
|
|||||||
gvfs # support for external drives and network shares
|
gvfs # support for external drives and network shares
|
||||||
xarchiver # optional GUI archive manager
|
xarchiver # optional GUI archive manager
|
||||||
tumbler # Showing thumbnails
|
tumbler # Showing thumbnails
|
||||||
|
libmtp
|
||||||
|
mtpfs
|
||||||
|
jmtpfs
|
||||||
];
|
];
|
||||||
|
|
||||||
############################
|
############################
|
||||||
@@ -833,6 +836,8 @@ in
|
|||||||
USERNAME = username;
|
USERNAME = username;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
# Enable gvfs as a service
|
||||||
|
services.gvfs.enable = true;
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
@@ -1522,9 +1527,15 @@ This sets the firewall.
|
|||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
filterForward = false; # don't filter forwarded traffic
|
||||||
|
# outbound is allowed by default UNLESS you've set:
|
||||||
|
|
||||||
# LAN-only ports — Wi-Fi interface
|
# LAN-only ports — Wi-Fi interface
|
||||||
interfaces."wlan0" = {
|
interfaces."wlan0" = {
|
||||||
allowedTCPPorts = [
|
allowedTCPPorts = [
|
||||||
|
22 # SSH
|
||||||
|
80 # allow HTTP globally for outbound
|
||||||
|
443 # allow HTTPS globally for outbound
|
||||||
631 # CUPS / IPP network printing
|
631 # CUPS / IPP network printing
|
||||||
9100 # AppSocket/JetDirect printing
|
9100 # AppSocket/JetDirect printing
|
||||||
6566 # SANE network scanner
|
6566 # SANE network scanner
|
||||||
@@ -2424,6 +2435,8 @@ bind = CTRL, mouse_down, cyclenext, prev
|
|||||||
bind = CTRL, mouse_up, cyclenext, prev
|
bind = CTRL, mouse_up, cyclenext, prev
|
||||||
|
|
||||||
# switch layouts
|
# switch layouts
|
||||||
|
bindel = CTRL ALT, mouse_up, layoutmsg, addmaster
|
||||||
|
bindel = CTRL ALT, mouse_down, layoutmsg, removemaster
|
||||||
|
|
||||||
# Hyprscrolling
|
# Hyprscrolling
|
||||||
bind = $mainMod, period, layoutmsg, move +col
|
bind = $mainMod, period, layoutmsg, move +col
|
||||||
|
|||||||
@@ -18,6 +18,8 @@ bind = CTRL, mouse_down, cyclenext, prev
|
|||||||
bind = CTRL, mouse_up, cyclenext, prev
|
bind = CTRL, mouse_up, cyclenext, prev
|
||||||
|
|
||||||
# switch layouts
|
# switch layouts
|
||||||
|
bindel = CTRL ALT, mouse_up, layoutmsg, addmaster
|
||||||
|
bindel = CTRL ALT, mouse_down, layoutmsg, removemaster
|
||||||
|
|
||||||
# Hyprscrolling
|
# Hyprscrolling
|
||||||
bind = $mainMod, period, layoutmsg, move +col
|
bind = $mainMod, period, layoutmsg, move +col
|
||||||
|
|||||||
@@ -16,6 +16,9 @@ in
|
|||||||
gvfs # support for external drives and network shares
|
gvfs # support for external drives and network shares
|
||||||
xarchiver # optional GUI archive manager
|
xarchiver # optional GUI archive manager
|
||||||
tumbler # Showing thumbnails
|
tumbler # Showing thumbnails
|
||||||
|
libmtp
|
||||||
|
mtpfs
|
||||||
|
jmtpfs
|
||||||
];
|
];
|
||||||
|
|
||||||
############################
|
############################
|
||||||
@@ -30,4 +33,6 @@ in
|
|||||||
USERNAME = username;
|
USERNAME = username;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
# Enable gvfs as a service
|
||||||
|
services.gvfs.enable = true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,9 +8,15 @@
|
|||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
filterForward = false; # don't filter forwarded traffic
|
||||||
|
# outbound is allowed by default UNLESS you've set:
|
||||||
|
|
||||||
# LAN-only ports — Wi-Fi interface
|
# LAN-only ports — Wi-Fi interface
|
||||||
interfaces."wlan0" = {
|
interfaces."wlan0" = {
|
||||||
allowedTCPPorts = [
|
allowedTCPPorts = [
|
||||||
|
22 # SSH
|
||||||
|
80 # allow HTTP globally for outbound
|
||||||
|
443 # allow HTTPS globally for outbound
|
||||||
631 # CUPS / IPP network printing
|
631 # CUPS / IPP network printing
|
||||||
9100 # AppSocket/JetDirect printing
|
9100 # AppSocket/JetDirect printing
|
||||||
6566 # SANE network scanner
|
6566 # SANE network scanner
|
||||||
|
|||||||
Reference in New Issue
Block a user