Compare commits
4 Commits
4bc1f17f80
...
3b6a66f0bb
Author | SHA1 | Date |
---|---|---|
Nathan McCarty | 3b6a66f0bb | |
Nathan McCarty | 9a090586f6 | |
Nathan McCarty | 644dc5a779 | |
Nathan McCarty | e9848ee9d0 |
|
@ -38,6 +38,8 @@ in lib.mkMerge [
|
|||
pkgs.libsForQt5.qt5ct
|
||||
materia-theme
|
||||
materia-kde-theme
|
||||
# Weylus for using the tablet
|
||||
weylus
|
||||
];
|
||||
|
||||
# Bluetooth applet
|
||||
|
|
|
@ -19,6 +19,7 @@ in with lib; {
|
|||
inputs.self.packages.${pkgs.system}.pyprland
|
||||
# Auto workspace renaming
|
||||
inputs.self.packages.${pkgs.system}.hyprland-autoname-workspaces
|
||||
wlr-randr
|
||||
];
|
||||
#########################
|
||||
## Hyprland
|
||||
|
|
|
@ -9,6 +9,8 @@ in {
|
|||
gimp-with-plugins
|
||||
# Krita for drawing
|
||||
unstable.krita
|
||||
# Xournal for recording notes
|
||||
xournalpp
|
||||
# Pinta for basic image editing
|
||||
unstable.pinta
|
||||
# Command line tools for image conversion and handling
|
||||
|
|
|
@ -73,10 +73,10 @@ in {
|
|||
useDHCP = false;
|
||||
interfaces.enp6s0.useDHCP = true;
|
||||
nat.externalInterface = "enp6s0";
|
||||
# Open ports for soulseek
|
||||
# Open ports for soulseek and weylus
|
||||
firewall = {
|
||||
allowedTCPPorts = [ 61377 ];
|
||||
allowedUDPPorts = [ 61377 ];
|
||||
allowedTCPPorts = [ 61377 1701 9001 ];
|
||||
allowedUDPPorts = [ 61377 1701 9001 ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -21,6 +21,9 @@
|
|||
wayland.windowManager.hyprland.extraConfig = ''
|
||||
# monitor=DP-1,preferred,auto,1.4,bitdepth,10
|
||||
# disable 10 bit output for now as this breaks screenshots
|
||||
misc {
|
||||
vrr = 1
|
||||
}
|
||||
monitor=DP-1,preferred,auto,1.4
|
||||
input {
|
||||
sensitivity = -0.8
|
||||
|
|
|
@ -4,7 +4,7 @@ set -eou pipefail
|
|||
# Get the list of rooms with no local users
|
||||
empty_rooms() {
|
||||
psql -d synapse -c "SELECT room_id FROM room_stats_current WHERE local_users_in_room = 0 \
|
||||
ORDER BY current_state_events DESC LIMIT 3;" -t --csv
|
||||
ORDER BY current_state_events DESC LIMIT 10;" -t --csv
|
||||
}
|
||||
|
||||
# Delete a room and purge its history
|
||||
|
|
Loading…
Reference in New Issue