Compare commits

..

4 commits

4 changed files with 14 additions and 3 deletions

View file

@ -4,7 +4,7 @@
"jetbrains-*" = { "jetbrains-*" = {
"alt./" = "C-/"; # Toggle comment. "alt./" = "C-/"; # Toggle comment.
"alt.." = "C-f8"; # Toggle line breakpoint. "alt.." = "C-f8"; # Toggle line breakpoint.
"alt.=" = "C-A-l"; # Reformat. "alt.equal" = "C-A-l"; # Reformat.
"alt.c" = "S-escape"; # Close panel. "alt.c" = "S-escape"; # Close panel.
"alt.capslock" = "C-A-S-insert"; # New scratch file. "alt.capslock" = "C-A-S-insert"; # New scratch file.
"alt.q" = "A-left"; # Prev tab. "alt.q" = "A-left"; # Prev tab.

View file

@ -49,7 +49,6 @@
# JamesDsp. # JamesDsp.
for_window [title="JamesDSP for Linux"] { for_window [title="JamesDSP for Linux"] {
move scratchpad move scratchpad
scratchpad show
} }
''; '';
} }

View file

@ -47,5 +47,18 @@
SHELL_NAME="''${pkg}" NIXPKGS_ALLOW_UNFREE=1 nix shell --impure github:NixOS/nixpkgs/''${rev}#''${pkg} -c ''${cmd} SHELL_NAME="''${pkg}" NIXPKGS_ALLOW_UNFREE=1 nix shell --impure github:NixOS/nixpkgs/''${rev}#''${pkg} -c ''${cmd}
} }
# Prefetch to nix store.
# Usage: prefetch <URL>
function prefetch() {
local url="''${1}"
if [[ "''${url}" = "" ]]; then
help prefetch
return 2
fi
nix hash to-sri --type sha256 $(nix-prefetch-url "''${url}")
}
''; '';
} }

View file

@ -7,7 +7,6 @@
module = { module = {
# ISSUE: hdd.enable = true; # ISSUE: hdd.enable = true;
change.enable = true; change.enable = true;
chat.enable = true;
cloud.enable = true; cloud.enable = true;
ddns.enable = true; ddns.enable = true;
dns.enable = true; dns.enable = true;