This commit is contained in:
Schrottkatze 2022-09-02 08:40:33 +02:00
parent 44a85ad4fb
commit 6a35e0a261
3 changed files with 12 additions and 7 deletions

View file

@ -145,5 +145,12 @@ with builtins;
networking.firewall.allowedTCPPorts = [ 8384 22000 ];
networking.firewall.allowedUDPPorts = [ 8080 22000 21027 ];
systemd.services."NetworkManager-wait-online".enable = false;
services.syncthing = rec {
enable = true;
user = "jade";
dataDir = "/home/${user}/Documents";
configDir = "/home/${user}/Documents/.config/syncthing";
};
}

View file

@ -153,6 +153,8 @@ in with lib; {
"${mod}+c" = "focus child";
# screenshot
"${mod}+w" = "exec window-screenshot.sh";
"${mod}+s" = "exec flameshot gui -c -p $HOME/Pictures/screenshots";
"${mod}+a" = "exec flameshot screen -c -p $HOME/Pictures/screenshots";
# rofi fuckery
"${mod}+d" = "exec --no-startup-id rofi -show drun";
"${mod}+space" = "exec --no-startup-id -show window";

View file

@ -12,6 +12,8 @@
jade = {
desktop.enable = true;
desktop.compositing = true;
terminal.enable = true;
neovim.enable = true;
};
# monitor control
@ -40,13 +42,6 @@
"/share/nix-direnv"
];
services.syncthing = rec {
enable = true;
user = "jade";
dataDir = "/home/${user}/Documents";
configDir = "/home/${user}/Documents/.config/syncthing";
};
services.blueman.enable = true;
services.gnome.gnome-keyring.enable = true;
@ -65,3 +60,4 @@
system.stateVersion = "22.05"; # Did you read the comment?
}